#[non_exhaustive]pub struct StopNodeRequest {
pub name: String,
/* private fields */
}Expand description
Request for StopNode.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringRequired. The resource name.
Implementations§
Trait Implementations§
Source§impl Clone for StopNodeRequest
impl Clone for StopNodeRequest
Source§fn clone(&self) -> StopNodeRequest
fn clone(&self) -> StopNodeRequest
Returns a duplicate 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 StopNodeRequest
impl Debug for StopNodeRequest
Source§impl Default for StopNodeRequest
impl Default for StopNodeRequest
Source§fn default() -> StopNodeRequest
fn default() -> StopNodeRequest
Returns the “default value” for a type. Read more
Source§impl Message for StopNodeRequest
impl Message for StopNodeRequest
Source§impl PartialEq for StopNodeRequest
impl PartialEq for StopNodeRequest
impl StructuralPartialEq for StopNodeRequest
Auto Trait Implementations§
impl Freeze for StopNodeRequest
impl RefUnwindSafe for StopNodeRequest
impl Send for StopNodeRequest
impl Sync for StopNodeRequest
impl Unpin for StopNodeRequest
impl UnsafeUnpin for StopNodeRequest
impl UnwindSafe for StopNodeRequest
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