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