pub struct ParsedAgentFile {
pub agent: AgentFile,
pub format: AgentFileFormat,
pub sha: String,
pub raw_content: String,
}Expand description
The result of parsing a raw agent file.
Fields§
§agent: AgentFile§format: AgentFileFormat§sha: String§raw_content: StringTrait Implementations§
Source§impl Clone for ParsedAgentFile
impl Clone for ParsedAgentFile
Source§fn clone(&self) -> ParsedAgentFile
fn clone(&self) -> ParsedAgentFile
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 moreAuto Trait Implementations§
impl Freeze for ParsedAgentFile
impl RefUnwindSafe for ParsedAgentFile
impl Send for ParsedAgentFile
impl Sync for ParsedAgentFile
impl Unpin for ParsedAgentFile
impl UnsafeUnpin for ParsedAgentFile
impl UnwindSafe for ParsedAgentFile
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