pub struct Variable<'a> {
pub key: Cow<'a, [u8]>,
pub value: Cow<'a, [u8]>,
pub typ: VarType,
}Fields§
§key: Cow<'a, [u8]>§value: Cow<'a, [u8]>§typ: VarTypeTrait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Variable<'a>
impl<'a> RefUnwindSafe for Variable<'a>
impl<'a> Send for Variable<'a>
impl<'a> Sync for Variable<'a>
impl<'a> Unpin for Variable<'a>
impl<'a> UnwindSafe for Variable<'a>
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