pub struct NodesTimeTimeResponse {
pub data: Box<NodesTimeTimeResponseData>,
pub total: Option<i32>,
pub changes: Option<Value>,
}Fields§
§data: Box<NodesTimeTimeResponseData>§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 NodesTimeTimeResponse
impl NodesTimeTimeResponse
pub fn new(data: NodesTimeTimeResponseData) -> NodesTimeTimeResponse
Trait Implementations§
Source§impl Clone for NodesTimeTimeResponse
impl Clone for NodesTimeTimeResponse
Source§fn clone(&self) -> NodesTimeTimeResponse
fn clone(&self) -> NodesTimeTimeResponse
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 NodesTimeTimeResponse
impl Debug for NodesTimeTimeResponse
Source§impl Default for NodesTimeTimeResponse
impl Default for NodesTimeTimeResponse
Source§fn default() -> NodesTimeTimeResponse
fn default() -> NodesTimeTimeResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NodesTimeTimeResponse
impl<'de> Deserialize<'de> for NodesTimeTimeResponse
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 NodesTimeTimeResponse
impl PartialEq for NodesTimeTimeResponse
Source§fn eq(&self, other: &NodesTimeTimeResponse) -> bool
fn eq(&self, other: &NodesTimeTimeResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NodesTimeTimeResponse
impl Serialize for NodesTimeTimeResponse
impl StructuralPartialEq for NodesTimeTimeResponse
Auto Trait Implementations§
impl Freeze for NodesTimeTimeResponse
impl RefUnwindSafe for NodesTimeTimeResponse
impl Send for NodesTimeTimeResponse
impl Sync for NodesTimeTimeResponse
impl Unpin for NodesTimeTimeResponse
impl UnsafeUnpin for NodesTimeTimeResponse
impl UnwindSafe for NodesTimeTimeResponse
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