pub struct TeamEditedChangesPrivacy {
pub from: String,
}
Expand description
TeamEditedChangesPrivacy
JSON schema
{
"type": "object",
"required": [
"from"
],
"properties": {
"from": {
"description": "The previous version of the team's privacy if the action was `edited`.",
"type": "string"
}
},
"additionalProperties": false
}
Fields§
§from: String
The previous version of the team’s privacy if the action was edited
.
Implementations§
Source§impl TeamEditedChangesPrivacy
impl TeamEditedChangesPrivacy
pub fn builder() -> TeamEditedChangesPrivacy
Trait Implementations§
Source§impl Clone for TeamEditedChangesPrivacy
impl Clone for TeamEditedChangesPrivacy
Source§fn clone(&self) -> TeamEditedChangesPrivacy
fn clone(&self) -> TeamEditedChangesPrivacy
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 Debug for TeamEditedChangesPrivacy
impl Debug for TeamEditedChangesPrivacy
Source§impl<'de> Deserialize<'de> for TeamEditedChangesPrivacy
impl<'de> Deserialize<'de> for TeamEditedChangesPrivacy
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 From<&TeamEditedChangesPrivacy> for TeamEditedChangesPrivacy
impl From<&TeamEditedChangesPrivacy> for TeamEditedChangesPrivacy
Source§fn from(value: &TeamEditedChangesPrivacy) -> Self
fn from(value: &TeamEditedChangesPrivacy) -> Self
Converts to this type from the input type.
Source§impl From<TeamEditedChangesPrivacy> for TeamEditedChangesPrivacy
impl From<TeamEditedChangesPrivacy> for TeamEditedChangesPrivacy
Source§fn from(value: TeamEditedChangesPrivacy) -> Self
fn from(value: TeamEditedChangesPrivacy) -> Self
Converts to this type from the input type.
Source§impl Serialize for TeamEditedChangesPrivacy
impl Serialize for TeamEditedChangesPrivacy
Auto Trait Implementations§
impl Freeze for TeamEditedChangesPrivacy
impl RefUnwindSafe for TeamEditedChangesPrivacy
impl Send for TeamEditedChangesPrivacy
impl Sync for TeamEditedChangesPrivacy
impl Unpin for TeamEditedChangesPrivacy
impl UnwindSafe for TeamEditedChangesPrivacy
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