pub struct ProfileFile {
pub root_path: NonEmptyString,
pub path: NonEmptyString,
pub sha256: NonEmptyString,
pub content: String,
}Expand description
A resolved profile sourced from a workspace file (memory, conventions, voice).
Fields§
§root_path: NonEmptyString§path: NonEmptyString§sha256: NonEmptyString§content: StringTrait Implementations§
Source§impl Clone for ProfileFile
impl Clone for ProfileFile
Source§fn clone(&self) -> ProfileFile
fn clone(&self) -> ProfileFile
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 ProfileFile
impl Debug for ProfileFile
Source§impl<'de> Deserialize<'de> for ProfileFile
impl<'de> Deserialize<'de> for ProfileFile
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
impl Eq for ProfileFile
Source§impl PartialEq for ProfileFile
impl PartialEq for ProfileFile
Source§fn eq(&self, other: &ProfileFile) -> bool
fn eq(&self, other: &ProfileFile) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl RunxSchema for ProfileFile
impl RunxSchema for ProfileFile
Source§fn json_schema() -> Value
fn json_schema() -> Value
The inlined JSON Schema for this type.
Source§impl Serialize for ProfileFile
impl Serialize for ProfileFile
impl StructuralPartialEq for ProfileFile
Auto Trait Implementations§
impl Freeze for ProfileFile
impl RefUnwindSafe for ProfileFile
impl Send for ProfileFile
impl Sync for ProfileFile
impl Unpin for ProfileFile
impl UnsafeUnpin for ProfileFile
impl UnwindSafe for ProfileFile
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