#[non_exhaustive]pub struct RejectHubSpokeResponse {
pub spoke: Option<Spoke>,
/* private fields */
}Expand description
The response for HubService.RejectHubSpoke.
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.spoke: Option<Spoke>The spoke that was operated on.
Implementations§
Trait Implementations§
Source§impl Clone for RejectHubSpokeResponse
impl Clone for RejectHubSpokeResponse
Source§fn clone(&self) -> RejectHubSpokeResponse
fn clone(&self) -> RejectHubSpokeResponse
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 RejectHubSpokeResponse
impl Debug for RejectHubSpokeResponse
Source§impl Default for RejectHubSpokeResponse
impl Default for RejectHubSpokeResponse
Source§fn default() -> RejectHubSpokeResponse
fn default() -> RejectHubSpokeResponse
Returns the “default value” for a type. Read more
Source§impl Message for RejectHubSpokeResponse
impl Message for RejectHubSpokeResponse
Source§impl PartialEq for RejectHubSpokeResponse
impl PartialEq for RejectHubSpokeResponse
impl StructuralPartialEq for RejectHubSpokeResponse
Auto Trait Implementations§
impl Freeze for RejectHubSpokeResponse
impl RefUnwindSafe for RejectHubSpokeResponse
impl Send for RejectHubSpokeResponse
impl Sync for RejectHubSpokeResponse
impl Unpin for RejectHubSpokeResponse
impl UnwindSafe for RejectHubSpokeResponse
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