pub struct AddRemoveProfileDataConfigArgs {
pub achievements: ShortVec<AddOrRemove<ShortString>>,
pub custom_data_fields: ShortVec<AddOrRemove<ShortString>>,
}
Expand description
Structure representing the arguments for adding or removing a profile data configuration in a project.
§Fields
label
: The label of the profile data configuration to be added or removed.data_type
: An optionalProfileDataType
enum representing the data type for the profile data configuration.
Fields§
§achievements: ShortVec<AddOrRemove<ShortString>>
§custom_data_fields: ShortVec<AddOrRemove<ShortString>>
Trait Implementations§
Source§impl BorshDeserialize for AddRemoveProfileDataConfigArgs
impl BorshDeserialize for AddRemoveProfileDataConfigArgs
fn deserialize_reader<R: Read>(reader: &mut R) -> Result<Self, Error>
Source§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
Source§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
Auto Trait Implementations§
impl Freeze for AddRemoveProfileDataConfigArgs
impl RefUnwindSafe for AddRemoveProfileDataConfigArgs
impl Send for AddRemoveProfileDataConfigArgs
impl Sync for AddRemoveProfileDataConfigArgs
impl Unpin for AddRemoveProfileDataConfigArgs
impl UnwindSafe for AddRemoveProfileDataConfigArgs
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