pub struct SenseDataProviderStateBD(/* private fields */);Expand description
Implementations§
Source§impl SenseDataProviderStateBD
impl SenseDataProviderStateBD
Sourcepub const INITIALIZED: SenseDataProviderStateBD
pub const INITIALIZED: SenseDataProviderStateBD
The state after the provider is successfully created, which means the provider is ready to start.
Sourcepub const RUNNING: SenseDataProviderStateBD
pub const RUNNING: SenseDataProviderStateBD
The state when the provider is running normally.
Sourcepub const STOPPED: SenseDataProviderStateBD
pub const STOPPED: SenseDataProviderStateBD
The state after the provider is successfully stopped, or when an unexpected error occurs.
pub fn from_raw(x: i32) -> Self
pub fn into_raw(self) -> i32
Trait Implementations§
Source§impl Clone for SenseDataProviderStateBD
impl Clone for SenseDataProviderStateBD
Source§fn clone(&self) -> SenseDataProviderStateBD
fn clone(&self) -> SenseDataProviderStateBD
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 SenseDataProviderStateBD
impl Debug for SenseDataProviderStateBD
Source§impl Default for SenseDataProviderStateBD
impl Default for SenseDataProviderStateBD
Source§fn default() -> SenseDataProviderStateBD
fn default() -> SenseDataProviderStateBD
Returns the “default value” for a type. Read more
Source§impl PartialEq for SenseDataProviderStateBD
impl PartialEq for SenseDataProviderStateBD
impl Copy for SenseDataProviderStateBD
impl Eq for SenseDataProviderStateBD
impl StructuralPartialEq for SenseDataProviderStateBD
Auto Trait Implementations§
impl Freeze for SenseDataProviderStateBD
impl RefUnwindSafe for SenseDataProviderStateBD
impl Send for SenseDataProviderStateBD
impl Sync for SenseDataProviderStateBD
impl Unpin for SenseDataProviderStateBD
impl UnwindSafe for SenseDataProviderStateBD
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