pub struct BuiltTree {
pub root: Option<String>,
pub nodes: BTreeMap<String, Vec<u8>>,
pub entries: BTreeMap<String, EntryState>,
pub files: BTreeMap<String, ContentFile>,
}Fields§
§root: Option<String>§nodes: BTreeMap<String, Vec<u8>>§entries: BTreeMap<String, EntryState>§files: BTreeMap<String, ContentFile>Trait Implementations§
Auto Trait Implementations§
impl Freeze for BuiltTree
impl RefUnwindSafe for BuiltTree
impl Send for BuiltTree
impl Sync for BuiltTree
impl Unpin for BuiltTree
impl UnsafeUnpin for BuiltTree
impl UnwindSafe for BuiltTree
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