pub enum DirectoryEvent {
OnOpen_ {
s: i32,
info: Option<Box<NodeInfoDeprecated>>,
},
OnRepresentation {
payload: Representation,
},
#[non_exhaustive] _UnknownEvent {
ordinal: u64,
},
}Variants§
Implementations§
Source§impl DirectoryEvent
impl DirectoryEvent
pub fn into_on_open_(self) -> Option<(i32, Option<Box<NodeInfoDeprecated>>)>
pub fn into_on_representation(self) -> Option<Representation>
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for DirectoryEvent
impl !UnwindSafe for DirectoryEvent
impl Freeze for DirectoryEvent
impl Send for DirectoryEvent
impl Sync for DirectoryEvent
impl Unpin for DirectoryEvent
impl UnsafeUnpin for DirectoryEvent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T to [Self]