pub struct SpawnOutput {
pub uri: String,
pub name: String,
pub path: String,
pub source_type: String,
pub vcs: Option<String>,
}Expand description
Result of a successful spawn.
Fields§
§uri: String§name: String§path: String§source_type: String§vcs: Option<String>Trait Implementations§
Source§impl Clone for SpawnOutput
impl Clone for SpawnOutput
Source§fn clone(&self) -> SpawnOutput
fn clone(&self) -> SpawnOutput
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 SpawnOutput
impl Debug for SpawnOutput
Source§impl<'de> Deserialize<'de> for SpawnOutput
impl<'de> Deserialize<'de> for SpawnOutput
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 SpawnOutput
impl RefUnwindSafe for SpawnOutput
impl Send for SpawnOutput
impl Sync for SpawnOutput
impl Unpin for SpawnOutput
impl UnsafeUnpin for SpawnOutput
impl UnwindSafe for SpawnOutput
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