pub struct ProfileHistory {
pub name: String,
pub active_generation: u16,
pub generations: Vec<ProfileGeneration>,
}Expand description
Versioned profile history for one vault profile.
Fields§
§name: String§active_generation: u16§generations: Vec<ProfileGeneration>Trait Implementations§
Source§impl Clone for ProfileHistory
impl Clone for ProfileHistory
Source§fn clone(&self) -> ProfileHistory
fn clone(&self) -> ProfileHistory
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProfileHistory
impl Debug for ProfileHistory
impl Eq for ProfileHistory
Source§impl PartialEq for ProfileHistory
impl PartialEq for ProfileHistory
impl StructuralPartialEq for ProfileHistory
Auto Trait Implementations§
impl Freeze for ProfileHistory
impl RefUnwindSafe for ProfileHistory
impl Send for ProfileHistory
impl Sync for ProfileHistory
impl Unpin for ProfileHistory
impl UnsafeUnpin for ProfileHistory
impl UnwindSafe for ProfileHistory
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