pub struct PermissionSetsDecoder<P> { /* private fields */ }Implementations§
Source§impl<'a, P> PermissionSetsDecoder<P>
impl<'a, P> PermissionSetsDecoder<P>
pub fn wrap(self, parent: P) -> Self
Sourcepub fn parent(&mut self) -> SbeResult<P>
pub fn parent(&mut self) -> SbeResult<P>
group token - Token{signal=BEGIN_GROUP, name=‘permissionSets’, referencedName=‘null’, description=‘null’, packageName=‘null’, id=101, version=0, deprecated=0, encodedLength=0, offset=-1, componentTokenCount=18, encoding=Encoding{presence=REQUIRED, primitiveType=null, byteOrder=LITTLE_ENDIAN, minValue=null, maxValue=null, nullValue=null, constValue=null, characterEncoding=‘null’, epoch=‘null’, timeUnit=null, semanticType=‘null’}}
pub fn acting_version(&mut self) -> u16
pub fn count(&self) -> u32
Sourcepub fn advance(&mut self) -> SbeResult<Option<usize>>
pub fn advance(&mut self) -> SbeResult<Option<usize>>
will return Some(current index) when successful otherwise None
Sourcepub fn permissions_decoder(self) -> PermissionsDecoder<Self>
pub fn permissions_decoder(self) -> PermissionsDecoder<Self>
GROUP DECODER (id=100)
Trait Implementations§
Source§impl<'a, P> ActingVersion for PermissionSetsDecoder<P>
impl<'a, P> ActingVersion for PermissionSetsDecoder<P>
fn acting_version(&self) -> u16
Source§impl<P: Debug> Debug for PermissionSetsDecoder<P>
impl<P: Debug> Debug for PermissionSetsDecoder<P>
Source§impl<'a, P> Decoder<'a> for PermissionSetsDecoder<P>
impl<'a, P> Decoder<'a> for PermissionSetsDecoder<P>
Source§impl<P: Default> Default for PermissionSetsDecoder<P>
impl<P: Default> Default for PermissionSetsDecoder<P>
Source§fn default() -> PermissionSetsDecoder<P>
fn default() -> PermissionSetsDecoder<P>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<P> Freeze for PermissionSetsDecoder<P>where
P: Freeze,
impl<P> RefUnwindSafe for PermissionSetsDecoder<P>where
P: RefUnwindSafe,
impl<P> Send for PermissionSetsDecoder<P>where
P: Send,
impl<P> Sync for PermissionSetsDecoder<P>where
P: Sync,
impl<P> Unpin for PermissionSetsDecoder<P>where
P: Unpin,
impl<P> UnsafeUnpin for PermissionSetsDecoder<P>where
P: UnsafeUnpin,
impl<P> UnwindSafe for PermissionSetsDecoder<P>where
P: UnwindSafe,
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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