pub struct SourceState {
pub available: Option<bool>,
pub note: Option<String>,
pub scope: Option<String>,
pub source: Option<String>,
}Fields§
§available: Option<bool>Available reports whether this ledger answered; false is honest "unavailable", never a zero that would read as no usage.
note: Option<String>Note says in prose what the ledger’s numbers mean.
scope: Option<String>Scope is whose usage the ledger measures: user or org.
source: Option<String>Source is the table of record behind the ledger.
Implementations§
Source§impl SourceState
impl SourceState
pub fn new() -> SourceState
Trait Implementations§
Source§impl Clone for SourceState
impl Clone for SourceState
Source§fn clone(&self) -> SourceState
fn clone(&self) -> SourceState
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 moreSource§impl Debug for SourceState
impl Debug for SourceState
Source§impl Default for SourceState
impl Default for SourceState
Source§fn default() -> SourceState
fn default() -> SourceState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SourceState
impl<'de> Deserialize<'de> for SourceState
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 PartialEq for SourceState
impl PartialEq for SourceState
Source§impl Serialize for SourceState
impl Serialize for SourceState
impl StructuralPartialEq for SourceState
Auto Trait Implementations§
impl Freeze for SourceState
impl RefUnwindSafe for SourceState
impl Send for SourceState
impl Sync for SourceState
impl Unpin for SourceState
impl UnsafeUnpin for SourceState
impl UnwindSafe for SourceState
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