pub struct SourceFileContent {
pub content: Vec<SourceFileContentContent>,
pub type_: String,
}Fields§
§content: Vec<SourceFileContentContent>The content of the jsonl file.
type_: StringThe type of jsonl source. Always file_content.
Trait Implementations§
Source§impl Clone for SourceFileContent
impl Clone for SourceFileContent
Source§fn clone(&self) -> SourceFileContent
fn clone(&self) -> SourceFileContent
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 SourceFileContent
impl Debug for SourceFileContent
Source§impl<'de> Deserialize<'de> for SourceFileContent
impl<'de> Deserialize<'de> for SourceFileContent
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 SourceFileContent
impl RefUnwindSafe for SourceFileContent
impl Send for SourceFileContent
impl Sync for SourceFileContent
impl Unpin for SourceFileContent
impl UnsafeUnpin for SourceFileContent
impl UnwindSafe for SourceFileContent
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