pub struct HandlerStatus {
pub file: String,
pub handler: String,
pub deployed: bool,
pub message: String,
}Expand description
The status of a handler’s operations for a single file.
Fields§
§file: StringWhich file this status is for (relative to pack root).
handler: StringWhich handler produced this status.
deployed: boolWhether the file is currently deployed.
message: StringHuman-readable status message (e.g. “linked to ~/.vimrc”).
Trait Implementations§
Source§impl Clone for HandlerStatus
impl Clone for HandlerStatus
Source§fn clone(&self) -> HandlerStatus
fn clone(&self) -> HandlerStatus
Returns a duplicate of the value. Read more
1.0.0 · 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 HandlerStatus
impl Debug for HandlerStatus
Auto Trait Implementations§
impl Freeze for HandlerStatus
impl RefUnwindSafe for HandlerStatus
impl Send for HandlerStatus
impl Sync for HandlerStatus
impl Unpin for HandlerStatus
impl UnsafeUnpin for HandlerStatus
impl UnwindSafe for HandlerStatus
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