pub struct DeleteNode {
pub node_name: Option<String>,
pub integration_runtime_name: Option<String>,
}
Expand description
Details of node to be deleted.
Fields§
§node_name: Option<String>
The name of node to delete.
integration_runtime_name: Option<String>
The name of integration runtime.
Implementations§
source§impl DeleteNode
impl DeleteNode
Trait Implementations§
source§impl Clone for DeleteNode
impl Clone for DeleteNode
source§fn clone(&self) -> DeleteNode
fn clone(&self) -> DeleteNode
Returns a copy of the value. Read more
1.0.0 · 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 DeleteNode
impl Debug for DeleteNode
source§impl Default for DeleteNode
impl Default for DeleteNode
source§fn default() -> DeleteNode
fn default() -> DeleteNode
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DeleteNode
impl<'de> Deserialize<'de> for DeleteNode
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<DeleteNode> for DeleteNode
impl PartialEq<DeleteNode> for DeleteNode
source§fn eq(&self, other: &DeleteNode) -> bool
fn eq(&self, other: &DeleteNode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for DeleteNode
impl Serialize for DeleteNode
impl StructuralPartialEq for DeleteNode
Auto Trait Implementations§
impl RefUnwindSafe for DeleteNode
impl Send for DeleteNode
impl Sync for DeleteNode
impl Unpin for DeleteNode
impl UnwindSafe for DeleteNode
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