pub struct SetStoreV2Args {
pub public: bool,
pub settings_uri: Option<String>,
}Fields§
§public: bool§settings_uri: Option<String>Trait Implementations§
Source§impl BorshDeserialize for SetStoreV2Args
impl BorshDeserialize for SetStoreV2Args
Source§impl BorshSerialize for SetStoreV2Args
impl BorshSerialize for SetStoreV2Args
Source§impl Clone for SetStoreV2Args
impl Clone for SetStoreV2Args
Source§fn clone(&self) -> SetStoreV2Args
fn clone(&self) -> SetStoreV2Args
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for SetStoreV2Args
impl RefUnwindSafe for SetStoreV2Args
impl Send for SetStoreV2Args
impl Sync for SetStoreV2Args
impl Unpin for SetStoreV2Args
impl UnwindSafe for SetStoreV2Args
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