pub enum DirectoryEntryStatusResponse {
Pending {
owner_pid: Principal,
created_at: u64,
provisional_pid: Option<Principal>,
},
Bound {
instance_pid: Principal,
bound_at: u64,
},
}Variants§
Trait Implementations§
Source§impl Clone for DirectoryEntryStatusResponse
impl Clone for DirectoryEntryStatusResponse
Source§fn clone(&self) -> DirectoryEntryStatusResponse
fn clone(&self) -> DirectoryEntryStatusResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DirectoryEntryStatusResponse
impl Debug for DirectoryEntryStatusResponse
Source§impl<'de> Deserialize<'de> for DirectoryEntryStatusResponse
impl<'de> Deserialize<'de> for DirectoryEntryStatusResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DirectoryEntryStatusResponse
impl PartialEq for DirectoryEntryStatusResponse
Source§fn eq(&self, other: &DirectoryEntryStatusResponse) -> bool
fn eq(&self, other: &DirectoryEntryStatusResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DirectoryEntryStatusResponse
impl StructuralPartialEq for DirectoryEntryStatusResponse
Auto Trait Implementations§
impl Freeze for DirectoryEntryStatusResponse
impl RefUnwindSafe for DirectoryEntryStatusResponse
impl Send for DirectoryEntryStatusResponse
impl Sync for DirectoryEntryStatusResponse
impl Unpin for DirectoryEntryStatusResponse
impl UnsafeUnpin for DirectoryEntryStatusResponse
impl UnwindSafe for DirectoryEntryStatusResponse
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