pub struct BlockDetails {
pub blockid: u32,
pub blockedby: String,
pub blockedbyid: u32,
pub blockreason: String,
pub blockedtimestamp: String,
pub blockpartial: bool,
pub blocknocreate: bool,
pub blockanononly: bool,
pub systemblocktype: Option<String>,
}Fields§
§blockid: u32§blockedby: String§blockedbyid: u32§blockreason: String§blockedtimestamp: String§blockpartial: bool§blocknocreate: bool§blockanononly: bool§systemblocktype: Option<String>Trait Implementations§
Source§impl Clone for BlockDetails
impl Clone for BlockDetails
Source§fn clone(&self) -> BlockDetails
fn clone(&self) -> BlockDetails
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 BlockDetails
impl Debug for BlockDetails
Source§impl<'de> Deserialize<'de> for BlockDetails
impl<'de> Deserialize<'de> for BlockDetails
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
Auto Trait Implementations§
impl Freeze for BlockDetails
impl RefUnwindSafe for BlockDetails
impl Send for BlockDetails
impl Sync for BlockDetails
impl Unpin for BlockDetails
impl UnwindSafe for BlockDetails
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