pub struct AgaveSession {
pub flags: u16,
pub tpu_to_pack: AgaveTpuToPackSession,
pub progress_tracker: Producer<ProgressMessage>,
pub workers: Vec<AgaveWorkerSession>,
}Expand description
An initialized scheduling session.
Fields§
§flags: u16§tpu_to_pack: AgaveTpuToPackSession§progress_tracker: Producer<ProgressMessage>§workers: Vec<AgaveWorkerSession>Auto Trait Implementations§
impl !Sync for AgaveSession
impl Freeze for AgaveSession
impl RefUnwindSafe for AgaveSession
impl Send for AgaveSession
impl Unpin for AgaveSession
impl UnsafeUnpin for AgaveSession
impl UnwindSafe for AgaveSession
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more