pub struct RespBoolean {
pub status: Option<String>,
pub message: Option<String>,
pub version: Option<String>,
pub commit: Option<String>,
pub build: Option<String>,
pub result: Option<Box<ResultBoolean>>,
pub metadata: Option<Value>,
}Fields§
§status: Option<String>§message: Option<String>§version: Option<String>§commit: Option<String>§build: Option<String>§result: Option<Box<ResultBoolean>>§metadata: Option<Value>Implementations§
Source§impl RespBoolean
impl RespBoolean
pub fn new() -> RespBoolean
Trait Implementations§
Source§impl Clone for RespBoolean
impl Clone for RespBoolean
Source§fn clone(&self) -> RespBoolean
fn clone(&self) -> RespBoolean
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 RespBoolean
impl Debug for RespBoolean
Source§impl Default for RespBoolean
impl Default for RespBoolean
Source§fn default() -> RespBoolean
fn default() -> RespBoolean
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RespBoolean
impl<'de> Deserialize<'de> for RespBoolean
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 RespBoolean
impl PartialEq for RespBoolean
Source§impl Serialize for RespBoolean
impl Serialize for RespBoolean
impl StructuralPartialEq for RespBoolean
Auto Trait Implementations§
impl Freeze for RespBoolean
impl RefUnwindSafe for RespBoolean
impl Send for RespBoolean
impl Sync for RespBoolean
impl Unpin for RespBoolean
impl UnsafeUnpin for RespBoolean
impl UnwindSafe for RespBoolean
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