pub struct LiteIdentity {
pub url: String,
pub credit_balance: u64,
pub last_used_on: u64,
}Fields§
§url: String§credit_balance: u64§last_used_on: u64Trait Implementations§
Source§impl Clone for LiteIdentity
impl Clone for LiteIdentity
Source§fn clone(&self) -> LiteIdentity
fn clone(&self) -> LiteIdentity
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 LiteIdentity
impl Debug for LiteIdentity
Source§impl<'de> Deserialize<'de> for LiteIdentity
impl<'de> Deserialize<'de> for LiteIdentity
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 LiteIdentity
impl PartialEq for LiteIdentity
Source§impl Serialize for LiteIdentity
impl Serialize for LiteIdentity
impl StructuralPartialEq for LiteIdentity
Auto Trait Implementations§
impl Freeze for LiteIdentity
impl RefUnwindSafe for LiteIdentity
impl Send for LiteIdentity
impl Sync for LiteIdentity
impl Unpin for LiteIdentity
impl UnsafeUnpin for LiteIdentity
impl UnwindSafe for LiteIdentity
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