pub struct BufferSummary {
pub id: BufferId,
pub path: Option<PathBuf>,
pub line_count: u32,
pub modified: bool,
}Fields§
§id: BufferId§path: Option<PathBuf>§line_count: u32§modified: boolTrait Implementations§
Source§impl Clone for BufferSummary
impl Clone for BufferSummary
Source§fn clone(&self) -> BufferSummary
fn clone(&self) -> BufferSummary
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 BufferSummary
impl Debug for BufferSummary
Source§impl<'de> Deserialize<'de> for BufferSummary
impl<'de> Deserialize<'de> for BufferSummary
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 BufferSummary
impl RefUnwindSafe for BufferSummary
impl Send for BufferSummary
impl Sync for BufferSummary
impl Unpin for BufferSummary
impl UnsafeUnpin for BufferSummary
impl UnwindSafe for BufferSummary
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