pub struct NodeGroupResponse {
pub response_id: Option<String>,
pub node_group: Box<NodeGroupOut>,
}Fields§
§response_id: Option<String>ID запроса
node_group: Box<NodeGroupOut>Группа нод
Implementations§
Source§impl NodeGroupResponse
impl NodeGroupResponse
pub fn new(node_group: NodeGroupOut) -> NodeGroupResponse
Trait Implementations§
Source§impl Clone for NodeGroupResponse
impl Clone for NodeGroupResponse
Source§fn clone(&self) -> NodeGroupResponse
fn clone(&self) -> NodeGroupResponse
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 NodeGroupResponse
impl Debug for NodeGroupResponse
Source§impl Default for NodeGroupResponse
impl Default for NodeGroupResponse
Source§fn default() -> NodeGroupResponse
fn default() -> NodeGroupResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NodeGroupResponse
impl<'de> Deserialize<'de> for NodeGroupResponse
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 NodeGroupResponse
impl PartialEq for NodeGroupResponse
Source§fn eq(&self, other: &NodeGroupResponse) -> bool
fn eq(&self, other: &NodeGroupResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NodeGroupResponse
impl Serialize for NodeGroupResponse
impl StructuralPartialEq for NodeGroupResponse
Auto Trait Implementations§
impl Freeze for NodeGroupResponse
impl RefUnwindSafe for NodeGroupResponse
impl Send for NodeGroupResponse
impl Sync for NodeGroupResponse
impl Unpin for NodeGroupResponse
impl UnsafeUnpin for NodeGroupResponse
impl UnwindSafe for NodeGroupResponse
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