pub enum CtlReadOnly {
Rw,
R,
Invalid(u16),
}Available on crate feature
model711 only.Expand description
Control Access
Control read-write access.
Variants§
Rw
Read-Write Access
Control has read-write access.
R
Read-Only Access
Control has read-only access.
Invalid(u16)
Raw enum value not defined by the SunSpec model.
Trait Implementations§
Source§impl Clone for CtlReadOnly
impl Clone for CtlReadOnly
Source§fn clone(&self) -> CtlReadOnly
fn clone(&self) -> CtlReadOnly
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 CtlReadOnly
impl Debug for CtlReadOnly
Source§impl EnumValue for CtlReadOnly
impl EnumValue for CtlReadOnly
Source§impl FixedSize for CtlReadOnly
impl FixedSize for CtlReadOnly
Source§impl PartialEq for CtlReadOnly
impl PartialEq for CtlReadOnly
impl Copy for CtlReadOnly
impl Eq for CtlReadOnly
impl StructuralPartialEq for CtlReadOnly
Auto Trait Implementations§
impl Freeze for CtlReadOnly
impl RefUnwindSafe for CtlReadOnly
impl Send for CtlReadOnly
impl Sync for CtlReadOnly
impl Unpin for CtlReadOnly
impl UnsafeUnpin for CtlReadOnly
impl UnwindSafe for CtlReadOnly
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