Struct CellAccessState
#[repr(transparent)]pub struct CellAccessState(pub c_int);Expand description
Cell access state type.
Tuple Fields§
§0: c_intImplementations§
§impl CellAccessState
impl CellAccessState
pub const NONE: Self
pub const NONE: Self
Unknown cell access state.
pub const NORMAL_ONLY: Self
pub const NORMAL_ONLY: Self
Cell access is allowed for normal calls only.
pub const EMERGENCY_ONLY: Self
pub const EMERGENCY_ONLY: Self
Cell access is allowed for emergency calls only.
pub const NO_CALLS: Self
pub const NO_CALLS: Self
Cell access is not allowed for any call type.
pub const ALL_CALLS: Self
pub const ALL_CALLS: Self
Cell access is allowed for all call types.
Trait Implementations§
§impl Clone for CellAccessState
impl Clone for CellAccessState
§fn clone(&self) -> CellAccessState
fn clone(&self) -> CellAccessState
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 more§impl Debug for CellAccessState
impl Debug for CellAccessState
§impl PartialEq for CellAccessState
impl PartialEq for CellAccessState
§impl Serialize for CellAccessState
impl Serialize for CellAccessState
impl Copy for CellAccessState
impl Eq for CellAccessState
impl StructuralPartialEq for CellAccessState
Auto Trait Implementations§
impl Freeze for CellAccessState
impl RefUnwindSafe for CellAccessState
impl Send for CellAccessState
impl Sync for CellAccessState
impl Unpin for CellAccessState
impl UnwindSafe for CellAccessState
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