pub struct InspectUintArray<T: AsRef<[I]>, I: Into<u64> + Clone> {
pub items: T,
/* private fields */
}Expand description
Wrapper to log uint array in an inspect_log! or inspect_insert! macro.
Fields§
§items: TImplementations§
Trait Implementations§
Source§impl<T: AsRef<[I]>, I: Into<u64> + Clone> WriteInspect for InspectUintArray<T, I>
impl<T: AsRef<[I]>, I: Into<u64> + Clone> WriteInspect for InspectUintArray<T, I>
Auto Trait Implementations§
impl<T, I> Freeze for InspectUintArray<T, I>where
T: Freeze,
impl<T, I> RefUnwindSafe for InspectUintArray<T, I>where
T: RefUnwindSafe,
I: RefUnwindSafe,
impl<T, I> Send for InspectUintArray<T, I>
impl<T, I> Sync for InspectUintArray<T, I>
impl<T, I> Unpin for InspectUintArray<T, I>
impl<T, I> UnwindSafe for InspectUintArray<T, I>where
T: UnwindSafe,
I: 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, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
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