pub struct NodesStartallResponse {
pub data: String,
pub total: Option<i32>,
pub changes: Option<Value>,
}Fields§
§data: String§total: Option<i32>Optional total count, present for paginated list responses.
changes: Option<Value>Optional change summary returned by some PUT operations (one entry per modified field).
Implementations§
Source§impl NodesStartallResponse
impl NodesStartallResponse
pub fn new(data: String) -> NodesStartallResponse
Trait Implementations§
Source§impl Clone for NodesStartallResponse
impl Clone for NodesStartallResponse
Source§fn clone(&self) -> NodesStartallResponse
fn clone(&self) -> NodesStartallResponse
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 NodesStartallResponse
impl Debug for NodesStartallResponse
Source§impl Default for NodesStartallResponse
impl Default for NodesStartallResponse
Source§fn default() -> NodesStartallResponse
fn default() -> NodesStartallResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NodesStartallResponse
impl<'de> Deserialize<'de> for NodesStartallResponse
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 NodesStartallResponse
impl PartialEq for NodesStartallResponse
Source§fn eq(&self, other: &NodesStartallResponse) -> bool
fn eq(&self, other: &NodesStartallResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NodesStartallResponse
impl Serialize for NodesStartallResponse
impl StructuralPartialEq for NodesStartallResponse
Auto Trait Implementations§
impl Freeze for NodesStartallResponse
impl RefUnwindSafe for NodesStartallResponse
impl Send for NodesStartallResponse
impl Sync for NodesStartallResponse
impl Unpin for NodesStartallResponse
impl UnsafeUnpin for NodesStartallResponse
impl UnwindSafe for NodesStartallResponse
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