pub struct Request<'a, R, W>{
pub reader: &'a RefCell<R>,
pub writer: &'a RefCell<W>,
pub header_writer: Option<&'a RefCell<W>>,
pub raw_key: Protected<Vec<u8>>,
pub header_type: HeaderType,
pub hashing_algorithm: HashingAlgorithm,
}Fields§
§reader: &'a RefCell<R>§writer: &'a RefCell<W>§header_writer: Option<&'a RefCell<W>>§raw_key: Protected<Vec<u8>>§header_type: HeaderType§hashing_algorithm: HashingAlgorithmAuto Trait Implementations§
impl<'a, R, W> Freeze for Request<'a, R, W>
impl<'a, R, W> !RefUnwindSafe for Request<'a, R, W>
impl<'a, R, W> !Send for Request<'a, R, W>
impl<'a, R, W> !Sync for Request<'a, R, W>
impl<'a, R, W> Unpin for Request<'a, R, W>
impl<'a, R, W> !UnwindSafe for Request<'a, R, W>
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