pub struct OrganizationRenamedChanges {
pub login: OrganizationRenamedChangesLogin,
}
Expand description
OrganizationRenamedChanges
JSON schema
{
"type": "object",
"required": [
"login"
],
"properties": {
"login": {
"type": "object",
"required": [
"from"
],
"properties": {
"from": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
Fields§
§login: OrganizationRenamedChangesLogin
Implementations§
Source§impl OrganizationRenamedChanges
impl OrganizationRenamedChanges
pub fn builder() -> OrganizationRenamedChanges
Trait Implementations§
Source§impl Clone for OrganizationRenamedChanges
impl Clone for OrganizationRenamedChanges
Source§fn clone(&self) -> OrganizationRenamedChanges
fn clone(&self) -> OrganizationRenamedChanges
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 OrganizationRenamedChanges
impl Debug for OrganizationRenamedChanges
Source§impl<'de> Deserialize<'de> for OrganizationRenamedChanges
impl<'de> Deserialize<'de> for OrganizationRenamedChanges
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<&OrganizationRenamedChanges> for OrganizationRenamedChanges
impl From<&OrganizationRenamedChanges> for OrganizationRenamedChanges
Source§fn from(value: &OrganizationRenamedChanges) -> Self
fn from(value: &OrganizationRenamedChanges) -> Self
Converts to this type from the input type.
Source§impl From<OrganizationRenamedChanges> for OrganizationRenamedChanges
impl From<OrganizationRenamedChanges> for OrganizationRenamedChanges
Source§fn from(value: OrganizationRenamedChanges) -> Self
fn from(value: OrganizationRenamedChanges) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OrganizationRenamedChanges
impl RefUnwindSafe for OrganizationRenamedChanges
impl Send for OrganizationRenamedChanges
impl Sync for OrganizationRenamedChanges
impl Unpin for OrganizationRenamedChanges
impl UnwindSafe for OrganizationRenamedChanges
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