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