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