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