#[non_exhaustive]pub enum OdMemberIdArrayIters<'arr, 'raw> {
UserName(OdMemberIdArrayNames<'arr, 'raw>),
UserUuid(OdMemberIdArrayUuids<'arr, 'raw>),
GroupUuid(OdMemberIdArrayUuids<'arr, 'raw>),
}Available on macOS and crate feature
macos_14_0_0 only.Expand description
One of the possible iterator for OdMemberIdArray
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
UserName(OdMemberIdArrayNames<'arr, 'raw>)
Users, designated by name
UserUuid(OdMemberIdArrayUuids<'arr, 'raw>)
Users, designated by UUID
GroupUuid(OdMemberIdArrayUuids<'arr, 'raw>)
Groups, designated by UUID
Auto Trait Implementations§
impl<'arr, 'raw> !Send for OdMemberIdArrayIters<'arr, 'raw>
impl<'arr, 'raw> !Sync for OdMemberIdArrayIters<'arr, 'raw>
impl<'arr, 'raw> Freeze for OdMemberIdArrayIters<'arr, 'raw>
impl<'arr, 'raw> RefUnwindSafe for OdMemberIdArrayIters<'arr, 'raw>
impl<'arr, 'raw> Unpin for OdMemberIdArrayIters<'arr, 'raw>
impl<'arr, 'raw> UnsafeUnpin for OdMemberIdArrayIters<'arr, 'raw>
impl<'arr, 'raw> UnwindSafe for OdMemberIdArrayIters<'arr, 'raw>
Blanket Implementations§
impl<T> AutoreleaseSafe for Twhere
T: ?Sized,
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