#[repr(u8)]pub enum AccessRestrictionType {
Attributeaccessforbidden = 0,
Attributewriteforbidden = 1,
Commandforbidden = 2,
Eventforbidden = 3,
}Variants§
Attributeaccessforbidden = 0
Clients on this fabric are currently forbidden from reading and writing an attribute
Attributewriteforbidden = 1
Clients on this fabric are currently forbidden from writing an attribute
Commandforbidden = 2
Clients on this fabric are currently forbidden from invoking a command
Eventforbidden = 3
Clients on this fabric are currently forbidden from reading an event
Implementations§
Trait Implementations§
Source§impl Clone for AccessRestrictionType
impl Clone for AccessRestrictionType
Source§fn clone(&self) -> AccessRestrictionType
fn clone(&self) -> AccessRestrictionType
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 AccessRestrictionType
impl Debug for AccessRestrictionType
Source§impl<'de> Deserialize<'de> for AccessRestrictionType
impl<'de> Deserialize<'de> for AccessRestrictionType
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 From<AccessRestrictionType> for u8
impl From<AccessRestrictionType> for u8
Source§fn from(val: AccessRestrictionType) -> Self
fn from(val: AccessRestrictionType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AccessRestrictionType
impl PartialEq for AccessRestrictionType
Source§impl Serialize for AccessRestrictionType
impl Serialize for AccessRestrictionType
impl Copy for AccessRestrictionType
impl Eq for AccessRestrictionType
impl StructuralPartialEq for AccessRestrictionType
Auto Trait Implementations§
impl Freeze for AccessRestrictionType
impl RefUnwindSafe for AccessRestrictionType
impl Send for AccessRestrictionType
impl Sync for AccessRestrictionType
impl Unpin for AccessRestrictionType
impl UnwindSafe for AccessRestrictionType
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