pub struct UpdateClaimRequest {
pub is_approved: bool,
}
Expand description
Instruction.
Fields§
§is_approved: bool
Trait Implementations§
Source§impl BorshDeserialize for UpdateClaimRequestwhere
bool: BorshDeserialize,
impl BorshDeserialize for UpdateClaimRequestwhere
bool: BorshDeserialize,
Source§impl BorshSerialize for UpdateClaimRequestwhere
bool: BorshSerialize,
impl BorshSerialize for UpdateClaimRequestwhere
bool: BorshSerialize,
Source§impl InstructionData for UpdateClaimRequest
impl InstructionData for UpdateClaimRequest
Auto Trait Implementations§
impl Freeze for UpdateClaimRequest
impl RefUnwindSafe for UpdateClaimRequest
impl Send for UpdateClaimRequest
impl Sync for UpdateClaimRequest
impl Unpin for UpdateClaimRequest
impl UnwindSafe for UpdateClaimRequest
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> 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