pub struct DecodedMember {
pub member_path: String,
pub entries: Vec<DecodedEntry>,
}Expand description
One decoded member: the manifest entries plus each sidecar’s text (decoded + dedented) ready to write.
Fields§
§member_path: StringThe zip member path the entries belong to.
entries: Vec<DecodedEntry>The entries, document order.
Trait Implementations§
Source§impl Clone for DecodedMember
impl Clone for DecodedMember
Source§fn clone(&self) -> DecodedMember
fn clone(&self) -> DecodedMember
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 DecodedMember
impl Debug for DecodedMember
Source§impl PartialEq for DecodedMember
impl PartialEq for DecodedMember
impl StructuralPartialEq for DecodedMember
Auto Trait Implementations§
impl Freeze for DecodedMember
impl RefUnwindSafe for DecodedMember
impl Send for DecodedMember
impl Sync for DecodedMember
impl Unpin for DecodedMember
impl UnsafeUnpin for DecodedMember
impl UnwindSafe for DecodedMember
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