pub struct SourceStatus {
pub mode: SourceMode,
pub fully_enumerated: bool,
}Expand description
Per-source enumeration status for one selected source.
Fields§
§mode: SourceModeThe source’s mode.
fully_enumerated: boolWhether this source was completely and successfully enumerated.
Trait Implementations§
Source§impl Clone for SourceStatus
impl Clone for SourceStatus
Source§fn clone(&self) -> SourceStatus
fn clone(&self) -> SourceStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SourceStatus
Source§impl Debug for SourceStatus
impl Debug for SourceStatus
impl Eq for SourceStatus
Source§impl PartialEq for SourceStatus
impl PartialEq for SourceStatus
Source§fn eq(&self, other: &SourceStatus) -> bool
fn eq(&self, other: &SourceStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SourceStatus
Auto Trait Implementations§
impl Freeze for SourceStatus
impl RefUnwindSafe for SourceStatus
impl Send for SourceStatus
impl Sync for SourceStatus
impl Unpin for SourceStatus
impl UnsafeUnpin for SourceStatus
impl UnwindSafe for SourceStatus
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