#[non_exhaustive]pub struct ReservedExtrasKey {
pub key: String,
}Expand description
Returned by SetError::validate_extras when SetError::extra
contains a key that collides with a typed-field wire-name in
RESERVED_SET_ERROR_WIRE_NAMES (bd:JMAP-jfia.17).
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.key: StringThe first reserved wire-name found in SetError.extra.
Trait Implementations§
Source§impl Clone for ReservedExtrasKey
impl Clone for ReservedExtrasKey
Source§fn clone(&self) -> ReservedExtrasKey
fn clone(&self) -> ReservedExtrasKey
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReservedExtrasKey
impl Debug for ReservedExtrasKey
Source§impl Display for ReservedExtrasKey
impl Display for ReservedExtrasKey
impl Eq for ReservedExtrasKey
Source§impl Error for ReservedExtrasKey
impl Error for ReservedExtrasKey
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for ReservedExtrasKey
impl PartialEq for ReservedExtrasKey
Source§fn eq(&self, other: &ReservedExtrasKey) -> bool
fn eq(&self, other: &ReservedExtrasKey) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReservedExtrasKey
Auto Trait Implementations§
impl Freeze for ReservedExtrasKey
impl RefUnwindSafe for ReservedExtrasKey
impl Send for ReservedExtrasKey
impl Sync for ReservedExtrasKey
impl Unpin for ReservedExtrasKey
impl UnsafeUnpin for ReservedExtrasKey
impl UnwindSafe for ReservedExtrasKey
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