pub struct SuccessArgsNotificationInfoGet<const MAX_COUNT: usize> {
pub more_pending_notifications: bool,
/* private fields */
}Expand description
FFA_NOTIFICATION_INFO_GET specific success argument structure. The MAX_COUNT parameter
depends on the 32-bit or 64-bit packing.
Fields§
§more_pending_notifications: boolImplementations§
Trait Implementations§
Source§impl<const MAX_COUNT: usize> Clone for SuccessArgsNotificationInfoGet<MAX_COUNT>
impl<const MAX_COUNT: usize> Clone for SuccessArgsNotificationInfoGet<MAX_COUNT>
Source§fn clone(&self) -> SuccessArgsNotificationInfoGet<MAX_COUNT>
fn clone(&self) -> SuccessArgsNotificationInfoGet<MAX_COUNT>
Returns a duplicate 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 moreSource§impl<const MAX_COUNT: usize> Debug for SuccessArgsNotificationInfoGet<MAX_COUNT>
impl<const MAX_COUNT: usize> Debug for SuccessArgsNotificationInfoGet<MAX_COUNT>
Source§impl<const MAX_COUNT: usize> Default for SuccessArgsNotificationInfoGet<MAX_COUNT>
impl<const MAX_COUNT: usize> Default for SuccessArgsNotificationInfoGet<MAX_COUNT>
Source§impl From<SuccessArgsNotificationInfoGet<10>> for SuccessArgs
impl From<SuccessArgsNotificationInfoGet<10>> for SuccessArgs
Source§fn from(value: SuccessArgsNotificationInfoGet32) -> Self
fn from(value: SuccessArgsNotificationInfoGet32) -> Self
Converts to this type from the input type.
Source§impl From<SuccessArgsNotificationInfoGet<20>> for SuccessArgs
impl From<SuccessArgsNotificationInfoGet<20>> for SuccessArgs
Source§fn from(value: SuccessArgsNotificationInfoGet64) -> Self
fn from(value: SuccessArgsNotificationInfoGet64) -> Self
Converts to this type from the input type.
Source§impl<const MAX_COUNT: usize> PartialEq for SuccessArgsNotificationInfoGet<MAX_COUNT>
impl<const MAX_COUNT: usize> PartialEq for SuccessArgsNotificationInfoGet<MAX_COUNT>
Source§fn eq(&self, other: &SuccessArgsNotificationInfoGet<MAX_COUNT>) -> bool
fn eq(&self, other: &SuccessArgsNotificationInfoGet<MAX_COUNT>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<const MAX_COUNT: usize> Copy for SuccessArgsNotificationInfoGet<MAX_COUNT>
impl<const MAX_COUNT: usize> Eq for SuccessArgsNotificationInfoGet<MAX_COUNT>
impl<const MAX_COUNT: usize> StructuralPartialEq for SuccessArgsNotificationInfoGet<MAX_COUNT>
Auto Trait Implementations§
impl<const MAX_COUNT: usize> Freeze for SuccessArgsNotificationInfoGet<MAX_COUNT>
impl<const MAX_COUNT: usize> RefUnwindSafe for SuccessArgsNotificationInfoGet<MAX_COUNT>
impl<const MAX_COUNT: usize> Send for SuccessArgsNotificationInfoGet<MAX_COUNT>
impl<const MAX_COUNT: usize> Sync for SuccessArgsNotificationInfoGet<MAX_COUNT>
impl<const MAX_COUNT: usize> Unpin for SuccessArgsNotificationInfoGet<MAX_COUNT>
impl<const MAX_COUNT: usize> UnwindSafe for SuccessArgsNotificationInfoGet<MAX_COUNT>
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