#[non_exhaustive]pub struct ServerErrorContext {
pub text: Option<String>,
pub error_ref: Option<String>,
pub manifest_rev: Option<u64>,
}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.text: Option<String>§error_ref: Option<String>§manifest_rev: Option<u64>Trait Implementations§
Source§impl Clone for ServerErrorContext
impl Clone for ServerErrorContext
Source§fn clone(&self) -> ServerErrorContext
fn clone(&self) -> ServerErrorContext
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 ServerErrorContext
impl Debug for ServerErrorContext
Source§impl PartialEq for ServerErrorContext
impl PartialEq for ServerErrorContext
impl Eq for ServerErrorContext
impl StructuralPartialEq for ServerErrorContext
Auto Trait Implementations§
impl Freeze for ServerErrorContext
impl RefUnwindSafe for ServerErrorContext
impl Send for ServerErrorContext
impl Sync for ServerErrorContext
impl Unpin for ServerErrorContext
impl UnwindSafe for ServerErrorContext
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