pub struct LocalRunnable {
pub id: String,
pub kind: LocalRunnableKind,
pub source_rank: u64,
}Fields§
§id: String§kind: LocalRunnableKind§source_rank: u64Rank assigned by the source scheduler. Sources share one merge/tie-break path.
Implementations§
Trait Implementations§
Source§impl Clone for LocalRunnable
impl Clone for LocalRunnable
Source§fn clone(&self) -> LocalRunnable
fn clone(&self) -> LocalRunnable
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 LocalRunnable
impl Debug for LocalRunnable
Source§impl<'de> Deserialize<'de> for LocalRunnable
impl<'de> Deserialize<'de> for LocalRunnable
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
impl Eq for LocalRunnable
Source§impl PartialEq for LocalRunnable
impl PartialEq for LocalRunnable
Source§impl Serialize for LocalRunnable
impl Serialize for LocalRunnable
impl StructuralPartialEq for LocalRunnable
Auto Trait Implementations§
impl Freeze for LocalRunnable
impl RefUnwindSafe for LocalRunnable
impl Send for LocalRunnable
impl Sync for LocalRunnable
impl Unpin for LocalRunnable
impl UnsafeUnpin for LocalRunnable
impl UnwindSafe for LocalRunnable
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