pub enum MatchOrReject {
Match {
data: CapabilityMatchData,
},
Reject {
data: CapabilityRejectData,
},
}Variants§
Trait Implementations§
Source§impl Clone for MatchOrReject
impl Clone for MatchOrReject
Source§fn clone(&self) -> MatchOrReject
fn clone(&self) -> MatchOrReject
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 MatchOrReject
impl Debug for MatchOrReject
Source§impl<'de> Deserialize<'de> for MatchOrReject
impl<'de> Deserialize<'de> for MatchOrReject
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 MatchOrReject
impl PartialEq for MatchOrReject
Source§impl Serialize for MatchOrReject
impl Serialize for MatchOrReject
impl StructuralPartialEq for MatchOrReject
Auto Trait Implementations§
impl Freeze for MatchOrReject
impl RefUnwindSafe for MatchOrReject
impl Send for MatchOrReject
impl Sync for MatchOrReject
impl Unpin for MatchOrReject
impl UnsafeUnpin for MatchOrReject
impl UnwindSafe for MatchOrReject
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