pub struct ProfileIndexEntry {
pub path: String,
pub source: ProfileSource,
pub created_at: String,
pub updated_at: String,
}Expand description
Profile entry in profiles.toml
Fields§
§path: StringRelative path from base_dir (e.g., “profiles/my-profile”)
source: ProfileSourceSource information
created_at: StringCreation timestamp
updated_at: StringLast update timestamp
Implementations§
Source§impl ProfileIndexEntry
impl ProfileIndexEntry
Trait Implementations§
Source§impl Clone for ProfileIndexEntry
impl Clone for ProfileIndexEntry
Source§fn clone(&self) -> ProfileIndexEntry
fn clone(&self) -> ProfileIndexEntry
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 Debug for ProfileIndexEntry
impl Debug for ProfileIndexEntry
Source§impl<'de> Deserialize<'de> for ProfileIndexEntry
impl<'de> Deserialize<'de> for ProfileIndexEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ProfileIndexEntry
impl RefUnwindSafe for ProfileIndexEntry
impl Send for ProfileIndexEntry
impl Sync for ProfileIndexEntry
impl Unpin for ProfileIndexEntry
impl UnwindSafe for ProfileIndexEntry
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