pub struct GetStatusResponse {
pub initialized: Option<bool>,
pub synced: Option<bool>,
pub unlocked: Option<bool>,
}Fields§
§initialized: Option<bool>§synced: Option<bool>§unlocked: Option<bool>Implementations§
Source§impl GetStatusResponse
impl GetStatusResponse
pub fn new() -> GetStatusResponse
Trait Implementations§
Source§impl Clone for GetStatusResponse
impl Clone for GetStatusResponse
Source§fn clone(&self) -> GetStatusResponse
fn clone(&self) -> GetStatusResponse
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 GetStatusResponse
impl Debug for GetStatusResponse
Source§impl Default for GetStatusResponse
impl Default for GetStatusResponse
Source§fn default() -> GetStatusResponse
fn default() -> GetStatusResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetStatusResponse
impl<'de> Deserialize<'de> for GetStatusResponse
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 GetStatusResponse
impl PartialEq for GetStatusResponse
Source§fn eq(&self, other: &GetStatusResponse) -> bool
fn eq(&self, other: &GetStatusResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GetStatusResponse
impl Serialize for GetStatusResponse
impl StructuralPartialEq for GetStatusResponse
Auto Trait Implementations§
impl Freeze for GetStatusResponse
impl RefUnwindSafe for GetStatusResponse
impl Send for GetStatusResponse
impl Sync for GetStatusResponse
impl Unpin for GetStatusResponse
impl UnsafeUnpin for GetStatusResponse
impl UnwindSafe for GetStatusResponse
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