#[non_exhaustive]pub struct StartNodeRequest {
pub name: String,
/* private fields */
}Expand description
Request for StartNode.
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 StartNodeRequest
impl Clone for StartNodeRequest
Source§fn clone(&self) -> StartNodeRequest
fn clone(&self) -> StartNodeRequest
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 StartNodeRequest
impl Debug for StartNodeRequest
Source§impl Default for StartNodeRequest
impl Default for StartNodeRequest
Source§fn default() -> StartNodeRequest
fn default() -> StartNodeRequest
Returns the “default value” for a type. Read more
Source§impl Message for StartNodeRequest
impl Message for StartNodeRequest
Source§impl PartialEq for StartNodeRequest
impl PartialEq for StartNodeRequest
impl StructuralPartialEq for StartNodeRequest
Auto Trait Implementations§
impl Freeze for StartNodeRequest
impl RefUnwindSafe for StartNodeRequest
impl Send for StartNodeRequest
impl Sync for StartNodeRequest
impl Unpin for StartNodeRequest
impl UnsafeUnpin for StartNodeRequest
impl UnwindSafe for StartNodeRequest
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