pub struct PartialVdf<'a> {
pub key: Key<'a>,
pub value: Value<'a>,
pub bases: Vec<Cow<'a, str>>,
}
Fields§
§key: Key<'a>
§value: Value<'a>
§bases: Vec<Cow<'a, str>>
Implementations§
Source§impl<'a> PartialVdf<'a>
impl<'a> PartialVdf<'a>
Trait Implementations§
Source§impl<'a> Clone for PartialVdf<'a>
impl<'a> Clone for PartialVdf<'a>
Source§fn clone(&self) -> PartialVdf<'a>
fn clone(&self) -> PartialVdf<'a>
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<'a> Debug for PartialVdf<'a>
impl<'a> Debug for PartialVdf<'a>
Source§impl<'a> Display for PartialVdf<'a>
impl<'a> Display for PartialVdf<'a>
Source§impl<'a> From<PartialVdf<'a>> for Vdf<'a>
impl<'a> From<PartialVdf<'a>> for Vdf<'a>
Source§fn from(partial: PartialVdf<'a>) -> Self
fn from(partial: PartialVdf<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> Hash for PartialVdf<'a>
impl<'a> Hash for PartialVdf<'a>
Source§impl<'a> Ord for PartialVdf<'a>
impl<'a> Ord for PartialVdf<'a>
Source§fn cmp(&self, other: &PartialVdf<'a>) -> Ordering
fn cmp(&self, other: &PartialVdf<'a>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> PartialEq for PartialVdf<'a>
impl<'a> PartialEq for PartialVdf<'a>
Source§impl<'a> PartialOrd for PartialVdf<'a>
impl<'a> PartialOrd for PartialVdf<'a>
impl<'a> Eq for PartialVdf<'a>
impl<'a> StructuralPartialEq for PartialVdf<'a>
Auto Trait Implementations§
impl<'a> Freeze for PartialVdf<'a>
impl<'a> RefUnwindSafe for PartialVdf<'a>
impl<'a> Send for PartialVdf<'a>
impl<'a> Sync for PartialVdf<'a>
impl<'a> Unpin for PartialVdf<'a>
impl<'a> UnwindSafe for PartialVdf<'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