pub enum CustodyMode {
Delegated,
}Expand description
How the signature relates to the actor it speaks for.
Variants§
Delegated
A service signed on the actor’s behalf. The actor may hold no key at
all. Upgrade path: the actor registers its own key and joins via
session invite / join / countersign, which produces a
two-signature participant event no service can forge.
Trait Implementations§
Source§impl Clone for CustodyMode
impl Clone for CustodyMode
Source§fn clone(&self) -> CustodyMode
fn clone(&self) -> CustodyMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CustodyMode
Source§impl Debug for CustodyMode
impl Debug for CustodyMode
Source§impl<'de> Deserialize<'de> for CustodyMode
impl<'de> Deserialize<'de> for CustodyMode
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
impl Eq for CustodyMode
Source§impl PartialEq for CustodyMode
impl PartialEq for CustodyMode
Source§impl Serialize for CustodyMode
impl Serialize for CustodyMode
impl StructuralPartialEq for CustodyMode
Auto Trait Implementations§
impl Freeze for CustodyMode
impl RefUnwindSafe for CustodyMode
impl Send for CustodyMode
impl Sync for CustodyMode
impl Unpin for CustodyMode
impl UnsafeUnpin for CustodyMode
impl UnwindSafe for CustodyMode
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.