pub struct EditedTextFile {
pub filename: String,
pub snippet: String,
pub description: Option<String>,
}Expand description
Edited text file summary
~302 occurrences per large session.
Fields§
§filename: StringFile path
snippet: StringLine-numbered snippet showing changes
Format: “42→pub mod kucoin;\n43→pub mod binance;…”
description: Option<String>Description of changes
Trait Implementations§
Source§impl Clone for EditedTextFile
impl Clone for EditedTextFile
Source§impl Debug for EditedTextFile
impl Debug for EditedTextFile
Source§impl<'de> Deserialize<'de> for EditedTextFile
impl<'de> Deserialize<'de> for EditedTextFile
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 EditedTextFile
impl RefUnwindSafe for EditedTextFile
impl Send for EditedTextFile
impl Sync for EditedTextFile
impl Unpin for EditedTextFile
impl UnsafeUnpin for EditedTextFile
impl UnwindSafe for EditedTextFile
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