pub struct DecodedEntry {
pub entry: ManifestEntry,
pub text: String,
}Expand description
One entry with its sidecar content.
Fields§
§entry: ManifestEntryThe manifest record (pointer/sidecar/indent).
text: StringThe sidecar text: decoded + dedented.
Trait Implementations§
Source§impl Clone for DecodedEntry
impl Clone for DecodedEntry
Source§fn clone(&self) -> DecodedEntry
fn clone(&self) -> DecodedEntry
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 DecodedEntry
impl Debug for DecodedEntry
Source§impl PartialEq for DecodedEntry
impl PartialEq for DecodedEntry
impl StructuralPartialEq for DecodedEntry
Auto Trait Implementations§
impl Freeze for DecodedEntry
impl RefUnwindSafe for DecodedEntry
impl Send for DecodedEntry
impl Sync for DecodedEntry
impl Unpin for DecodedEntry
impl UnsafeUnpin for DecodedEntry
impl UnwindSafe for DecodedEntry
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