Struct EMCompute::GroupOfBinders
source · #[repr(C)]pub struct GroupOfBinders {
pub group: u32,
pub datas: *mut DataBinder,
pub datas_len: usize,
}Expand description
all DataBinder types which have the same @group index in your kernel code must all be gathered in this type
Fields§
§group: u32index of group in your kernel code
datas: *mut DataBinderpointer to array which all of the DataBinders from same group are gathered in
datas_len: usizelen of datas array
Trait Implementations§
source§impl Clone for GroupOfBinders
impl Clone for GroupOfBinders
source§fn clone(&self) -> GroupOfBinders
fn clone(&self) -> GroupOfBinders
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GroupOfBinders
impl RefUnwindSafe for GroupOfBinders
impl !Send for GroupOfBinders
impl !Sync for GroupOfBinders
impl Unpin for GroupOfBinders
impl UnwindSafe for GroupOfBinders
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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