pub struct AllResponseAttributes {
pub code: Option<u32>,
pub code_details: Option<String>,
pub flags: Option<u64>,
pub grpc_status: Option<u32>,
pub headers: Option<Vec<(String, Vec<u8>)>>,
pub trailers: Option<Vec<(String, Vec<u8>)>>,
pub size: Option<usize>,
pub total_size: Option<usize>,
}
Fields§
§code: Option<u32>
§code_details: Option<String>
§flags: Option<u64>
§grpc_status: Option<u32>
§headers: Option<Vec<(String, Vec<u8>)>>
§trailers: Option<Vec<(String, Vec<u8>)>>
§size: Option<usize>
§total_size: Option<usize>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AllResponseAttributes
impl RefUnwindSafe for AllResponseAttributes
impl Send for AllResponseAttributes
impl Sync for AllResponseAttributes
impl Unpin for AllResponseAttributes
impl UnwindSafe for AllResponseAttributes
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