pub struct ClanUpdateableData {
pub description: Option<ClanUpdateableDataDescription>,
pub language: String,
pub name: ClanUpdateableDataName,
pub tag: ClanUpdateableDataTag,
}Expand description
ClanUpdateableData
JSON schema
{
"allOf": [
{
"$ref": "#/definitions/clanUpdateableBaseData"
},
{
"type": "object",
"properties": {
"description": {
"type": "string",
"maxLength": 500
}
}
}
]
}Fields§
§description: Option<ClanUpdateableDataDescription>§language: String§name: ClanUpdateableDataName§tag: ClanUpdateableDataTagImplementations§
Source§impl ClanUpdateableData
impl ClanUpdateableData
pub fn builder() -> ClanUpdateableData
Trait Implementations§
Source§impl Clone for ClanUpdateableData
impl Clone for ClanUpdateableData
Source§fn clone(&self) -> ClanUpdateableData
fn clone(&self) -> ClanUpdateableData
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 ClanUpdateableData
impl Debug for ClanUpdateableData
Source§impl<'de> Deserialize<'de> for ClanUpdateableData
impl<'de> Deserialize<'de> for ClanUpdateableData
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<ClanUpdateableData> for ClanUpdateableData
impl From<ClanUpdateableData> for ClanUpdateableData
Source§fn from(value: ClanUpdateableData) -> Self
fn from(value: ClanUpdateableData) -> Self
Converts to this type from the input type.
Source§impl Serialize for ClanUpdateableData
impl Serialize for ClanUpdateableData
Source§impl TryFrom<ClanUpdateableData> for ClanUpdateableData
impl TryFrom<ClanUpdateableData> for ClanUpdateableData
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: ClanUpdateableData) -> Result<Self, ConversionError>
fn try_from(value: ClanUpdateableData) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ClanUpdateableData
impl RefUnwindSafe for ClanUpdateableData
impl Send for ClanUpdateableData
impl Sync for ClanUpdateableData
impl Unpin for ClanUpdateableData
impl UnsafeUnpin for ClanUpdateableData
impl UnwindSafe for ClanUpdateableData
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