pub struct TaskArguments {
pub bounds: Vec<ResourceBound>,
pub local: Vec<Resource>,
pub shared: Vec<Resource>,
pub config: Vec<Resource>,
pub spawn: Vec<Spawn>,
pub monotonic: Option<Path>,
pub dependencies: Vec<TaskDependency>,
}Fields§
§bounds: Vec<ResourceBound>§local: Vec<Resource>§config: Vec<Resource>§spawn: Vec<Spawn>§monotonic: Option<Path>Source reference, not the system’s actual tick rate or hardware clock.
dependencies: Vec<TaskDependency>Implementations§
Source§impl TaskArguments
impl TaskArguments
Trait Implementations§
Source§impl Clone for TaskArguments
impl Clone for TaskArguments
Source§fn clone(&self) -> TaskArguments
fn clone(&self) -> TaskArguments
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 TaskArguments
impl Debug for TaskArguments
Source§impl Default for TaskArguments
impl Default for TaskArguments
Source§fn default() -> TaskArguments
fn default() -> TaskArguments
Returns the “default value” for a type. Read more
Source§impl Parse for TaskArguments
impl Parse for TaskArguments
fn parse(input: ParseStream<'_>) -> Result<Self>
Auto Trait Implementations§
impl !Send for TaskArguments
impl !Sync for TaskArguments
impl Freeze for TaskArguments
impl RefUnwindSafe for TaskArguments
impl Unpin for TaskArguments
impl UnsafeUnpin for TaskArguments
impl UnwindSafe for TaskArguments
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