pub struct NodeGroupsResponse {
pub response_id: Option<String>,
pub meta: Box<SchemasMeta>,
pub node_groups: Vec<NodeGroupOut>,
}Fields§
§response_id: Option<String>ID запроса
meta: Box<SchemasMeta>Вспомогательная информация о возвращаемой сущности
node_groups: Vec<NodeGroupOut>Массив объектов Группа нод
Implementations§
Source§impl NodeGroupsResponse
impl NodeGroupsResponse
pub fn new( meta: SchemasMeta, node_groups: Vec<NodeGroupOut>, ) -> NodeGroupsResponse
Trait Implementations§
Source§impl Clone for NodeGroupsResponse
impl Clone for NodeGroupsResponse
Source§fn clone(&self) -> NodeGroupsResponse
fn clone(&self) -> NodeGroupsResponse
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 NodeGroupsResponse
impl Debug for NodeGroupsResponse
Source§impl Default for NodeGroupsResponse
impl Default for NodeGroupsResponse
Source§fn default() -> NodeGroupsResponse
fn default() -> NodeGroupsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NodeGroupsResponse
impl<'de> Deserialize<'de> for NodeGroupsResponse
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 NodeGroupsResponse
impl PartialEq for NodeGroupsResponse
Source§fn eq(&self, other: &NodeGroupsResponse) -> bool
fn eq(&self, other: &NodeGroupsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NodeGroupsResponse
impl Serialize for NodeGroupsResponse
impl StructuralPartialEq for NodeGroupsResponse
Auto Trait Implementations§
impl Freeze for NodeGroupsResponse
impl RefUnwindSafe for NodeGroupsResponse
impl Send for NodeGroupsResponse
impl Sync for NodeGroupsResponse
impl Unpin for NodeGroupsResponse
impl UnsafeUnpin for NodeGroupsResponse
impl UnwindSafe for NodeGroupsResponse
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