pub struct ManagerFile {
pub manager: Manager,
pub file: String,
pub text: String,
}Expand description
One manager and the file that declares it.
Fields§
§manager: ManagerThe manager.
file: StringThe file, relative to the target.
text: StringIts text.
Trait Implementations§
Source§impl Clone for ManagerFile
impl Clone for ManagerFile
Source§fn clone(&self) -> ManagerFile
fn clone(&self) -> ManagerFile
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 ManagerFile
impl Debug for ManagerFile
Auto Trait Implementations§
impl Freeze for ManagerFile
impl RefUnwindSafe for ManagerFile
impl Send for ManagerFile
impl Sync for ManagerFile
impl Unpin for ManagerFile
impl UnsafeUnpin for ManagerFile
impl UnwindSafe for ManagerFile
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