pub struct UpdateServerResultItem {
pub input: Option<String>,
pub output: Option<Vec<String>>,
pub status: Option<i32>,
}
Fields§
§input: Option<String>
§output: Option<Vec<String>>
§status: Option<i32>
Implementations§
Source§impl UpdateServerResultItem
impl UpdateServerResultItem
pub fn new() -> UpdateServerResultItem
Trait Implementations§
Source§impl Clone for UpdateServerResultItem
impl Clone for UpdateServerResultItem
Source§fn clone(&self) -> UpdateServerResultItem
fn clone(&self) -> UpdateServerResultItem
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 UpdateServerResultItem
impl Debug for UpdateServerResultItem
Source§impl Default for UpdateServerResultItem
impl Default for UpdateServerResultItem
Source§fn default() -> UpdateServerResultItem
fn default() -> UpdateServerResultItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateServerResultItem
impl<'de> Deserialize<'de> for UpdateServerResultItem
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 UpdateServerResultItem
impl PartialEq for UpdateServerResultItem
Source§impl Serialize for UpdateServerResultItem
impl Serialize for UpdateServerResultItem
impl StructuralPartialEq for UpdateServerResultItem
Auto Trait Implementations§
impl Freeze for UpdateServerResultItem
impl RefUnwindSafe for UpdateServerResultItem
impl Send for UpdateServerResultItem
impl Sync for UpdateServerResultItem
impl Unpin for UpdateServerResultItem
impl UnwindSafe for UpdateServerResultItem
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