pub struct RootParent {
pub run: ParentRun,
pub job: ParentJob,
}Expand description
The root run and job at the top of a multi-level parent chain.
Fields§
§run: ParentRunThe root run.
job: ParentJobThe root job.
Trait Implementations§
Source§impl Clone for RootParent
impl Clone for RootParent
Source§fn clone(&self) -> RootParent
fn clone(&self) -> RootParent
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 RootParent
impl Debug for RootParent
Source§impl<'de> Deserialize<'de> for RootParent
impl<'de> Deserialize<'de> for RootParent
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 RootParent
impl RefUnwindSafe for RootParent
impl Send for RootParent
impl Sync for RootParent
impl Unpin for RootParent
impl UnsafeUnpin for RootParent
impl UnwindSafe for RootParent
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