pub struct MergeOrganizationMetadataRequest {
pub public_metadata: Option<Value>,
pub private_metadata: Option<Value>,
}Fields§
§public_metadata: Option<Value>Metadata saved on the organization, that is visible to both your frontend and backend. The new object will be merged with the existing value.
private_metadata: Option<Value>Metadata saved on the organization that is only visible to your backend. The new object will be merged with the existing value.
Implementations§
Trait Implementations§
Source§impl Clone for MergeOrganizationMetadataRequest
impl Clone for MergeOrganizationMetadataRequest
Source§fn clone(&self) -> MergeOrganizationMetadataRequest
fn clone(&self) -> MergeOrganizationMetadataRequest
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 moreSource§impl<'de> Deserialize<'de> for MergeOrganizationMetadataRequest
impl<'de> Deserialize<'de> for MergeOrganizationMetadataRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MergeOrganizationMetadataRequest
impl PartialEq for MergeOrganizationMetadataRequest
Source§fn eq(&self, other: &MergeOrganizationMetadataRequest) -> bool
fn eq(&self, other: &MergeOrganizationMetadataRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MergeOrganizationMetadataRequest
Auto Trait Implementations§
impl Freeze for MergeOrganizationMetadataRequest
impl RefUnwindSafe for MergeOrganizationMetadataRequest
impl Send for MergeOrganizationMetadataRequest
impl Sync for MergeOrganizationMetadataRequest
impl Unpin for MergeOrganizationMetadataRequest
impl UnwindSafe for MergeOrganizationMetadataRequest
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