pub struct Lib {
pub files: Vec<File>,
/* private fields */
}Expand description
One opened optimistic snapshot of a managed web library.
files is the complete editable UTF-8 source tree. Call Lib::write after
changing it. A successful write refreshes the private generation fence.
Fields§
§files: Vec<File>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Lib
impl RefUnwindSafe for Lib
impl Send for Lib
impl Sync for Lib
impl Unpin for Lib
impl UnsafeUnpin for Lib
impl UnwindSafe for Lib
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