pub struct Stash { /* private fields */ }Expand description
Stash for saving and organizing documents.
§Example
use glow::Stash;
let mut stash = Stash::new();
stash.add("README.md");
stash.add("docs/guide.md");
assert_eq!(stash.documents().len(), 2);Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Stash
impl RefUnwindSafe for Stash
impl Send for Stash
impl Sync for Stash
impl Unpin for Stash
impl UnwindSafe for Stash
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