pub struct GetAssertionsResponse<'st>(pub &'st [&'st Term<'st>]);
Expand description
(<term>*)
Tuple Fields§
§0: &'st [&'st Term<'st>]
Implementations§
Source§impl<'st> GetAssertionsResponse<'st>
impl<'st> GetAssertionsResponse<'st>
Trait Implementations§
Source§impl<'st> Clone for GetAssertionsResponse<'st>
impl<'st> Clone for GetAssertionsResponse<'st>
Source§fn clone(&self) -> GetAssertionsResponse<'st>
fn clone(&self) -> GetAssertionsResponse<'st>
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 moreSource§impl<'st> Debug for GetAssertionsResponse<'st>
impl<'st> Debug for GetAssertionsResponse<'st>
Source§impl Display for GetAssertionsResponse<'_>
impl Display for GetAssertionsResponse<'_>
Source§impl<'st> Hash for GetAssertionsResponse<'st>
impl<'st> Hash for GetAssertionsResponse<'st>
Source§impl<'st> PartialEq for GetAssertionsResponse<'st>
impl<'st> PartialEq for GetAssertionsResponse<'st>
impl<'st> Copy for GetAssertionsResponse<'st>
impl<'st> Eq for GetAssertionsResponse<'st>
impl<'st> StructuralPartialEq for GetAssertionsResponse<'st>
Auto Trait Implementations§
impl<'st> Freeze for GetAssertionsResponse<'st>
impl<'st> RefUnwindSafe for GetAssertionsResponse<'st>
impl<'st> Send for GetAssertionsResponse<'st>
impl<'st> Sync for GetAssertionsResponse<'st>
impl<'st> Unpin for GetAssertionsResponse<'st>
impl<'st> UnwindSafe for GetAssertionsResponse<'st>
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§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