pub struct FetchError {
pub request_id: VarInt,
pub error_code: VarInt,
pub reason_phrase: Vec<u8>,
}Fields§
§request_id: VarInt§error_code: VarInt§reason_phrase: Vec<u8>Trait Implementations§
Source§impl Clone for FetchError
impl Clone for FetchError
Source§fn clone(&self) -> FetchError
fn clone(&self) -> FetchError
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 FetchError
impl Debug for FetchError
Source§impl PartialEq for FetchError
impl PartialEq for FetchError
impl Eq for FetchError
impl StructuralPartialEq for FetchError
Auto Trait Implementations§
impl Freeze for FetchError
impl RefUnwindSafe for FetchError
impl Send for FetchError
impl Sync for FetchError
impl Unpin for FetchError
impl UnsafeUnpin for FetchError
impl UnwindSafe for FetchError
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