pub struct ClanUpdateableBaseData {
pub language: String,
pub name: ClanUpdateableBaseDataName,
pub tag: ClanUpdateableBaseDataTag,
}Expand description
ClanUpdateableBaseData
JSON schema
{
"type": "object",
"required": [
"language",
"name",
"tag"
],
"properties": {
"language": {
"type": "string"
},
"name": {
"type": "string",
"maxLength": 30
},
"tag": {
"type": "string",
"maxLength": 10,
"minLength": 3
}
}
}Fields§
§language: String§name: ClanUpdateableBaseDataName§tag: ClanUpdateableBaseDataTagImplementations§
Source§impl ClanUpdateableBaseData
impl ClanUpdateableBaseData
pub fn builder() -> ClanUpdateableBaseData
Trait Implementations§
Source§impl Clone for ClanUpdateableBaseData
impl Clone for ClanUpdateableBaseData
Source§fn clone(&self) -> ClanUpdateableBaseData
fn clone(&self) -> ClanUpdateableBaseData
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 ClanUpdateableBaseData
impl Debug for ClanUpdateableBaseData
Source§impl<'de> Deserialize<'de> for ClanUpdateableBaseData
impl<'de> Deserialize<'de> for ClanUpdateableBaseData
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<ClanUpdateableBaseData> for ClanUpdateableBaseData
impl From<ClanUpdateableBaseData> for ClanUpdateableBaseData
Source§fn from(value: ClanUpdateableBaseData) -> Self
fn from(value: ClanUpdateableBaseData) -> Self
Converts to this type from the input type.
Source§impl Serialize for ClanUpdateableBaseData
impl Serialize for ClanUpdateableBaseData
Source§impl TryFrom<ClanUpdateableBaseData> for ClanUpdateableBaseData
impl TryFrom<ClanUpdateableBaseData> for ClanUpdateableBaseData
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: ClanUpdateableBaseData) -> Result<Self, ConversionError>
fn try_from(value: ClanUpdateableBaseData) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ClanUpdateableBaseData
impl RefUnwindSafe for ClanUpdateableBaseData
impl Send for ClanUpdateableBaseData
impl Sync for ClanUpdateableBaseData
impl Unpin for ClanUpdateableBaseData
impl UnsafeUnpin for ClanUpdateableBaseData
impl UnwindSafe for ClanUpdateableBaseData
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