pub struct ActionLog {
pub result: Result<TendrilActionSuccess, TendrilActionError>,
/* private fields */
}Expand description
Contains the metadata from a single tendrils action.
Fields§
§result: Result<TendrilActionSuccess, TendrilActionError>Result of this individual action.
Implementations§
Trait Implementations§
Source§impl TendrilLog for ActionLog
impl TendrilLog for ActionLog
Source§fn local_type(&self) -> &Option<FsoType>
fn local_type(&self) -> &Option<FsoType>
The type of the file system object in the Tendrils repo.
None if it does not exist.Source§fn remote_type(&self) -> &Option<FsoType>
fn remote_type(&self) -> &Option<FsoType>
The type of the file system object at its device-specific
location.
None if it does not exist.Source§fn resolved_path(&self) -> &PathBuf
fn resolved_path(&self) -> &PathBuf
The full path to the remote. This shows the result after resolving
all environment/other variables in the path.
impl Eq for ActionLog
impl StructuralPartialEq for ActionLog
Auto Trait Implementations§
impl Freeze for ActionLog
impl RefUnwindSafe for ActionLog
impl Send for ActionLog
impl Sync for ActionLog
impl Unpin for ActionLog
impl UnsafeUnpin for ActionLog
impl UnwindSafe for ActionLog
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.