pub enum GrowOutput {
Updated {
uri: String,
old_hash: String,
new_hash: String,
method: String,
path: String,
},
UpToDate {
uri: String,
hash: String,
},
}Expand description
Result of a successful grow.
Variants§
Trait Implementations§
Source§impl Clone for GrowOutput
impl Clone for GrowOutput
Source§fn clone(&self) -> GrowOutput
fn clone(&self) -> GrowOutput
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 GrowOutput
impl Debug for GrowOutput
Source§impl<'de> Deserialize<'de> for GrowOutput
impl<'de> Deserialize<'de> for GrowOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GrowOutput
impl RefUnwindSafe for GrowOutput
impl Send for GrowOutput
impl Sync for GrowOutput
impl Unpin for GrowOutput
impl UnsafeUnpin for GrowOutput
impl UnwindSafe for GrowOutput
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