pub struct CliResultJson {
pub app: String,
pub command: String,
pub arg: String,
pub status: bool,
pub result: String,
pub note: String,
}Fields§
§app: String§command: String§arg: String§status: bool§result: String§note: StringTrait Implementations§
Source§impl Clone for CliResultJson
impl Clone for CliResultJson
Source§fn clone(&self) -> CliResultJson
fn clone(&self) -> CliResultJson
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 CliResultJson
impl Debug for CliResultJson
Source§impl<'de> Deserialize<'de> for CliResultJson
impl<'de> Deserialize<'de> for CliResultJson
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 CliResultJson
impl RefUnwindSafe for CliResultJson
impl Send for CliResultJson
impl Sync for CliResultJson
impl Unpin for CliResultJson
impl UnsafeUnpin for CliResultJson
impl UnwindSafe for CliResultJson
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