pub struct Maker {
pub description: Option<String>,
pub employer: Option<String>,
pub job_title: Option<String>,
pub login_id: String,
pub name: String,
pub picture_link: Option<String>,
pub slug: Option<String>,
}
Expand description
Info about the maker
JSON schema
{
"description": "Info about the maker",
"type": "object",
"required": [
"loginId",
"name"
],
"properties": {
"description": {
"description": "Description for the maker.",
"type": "string"
},
"employer": {
"description": "Employer for maker.",
"type": "string"
},
"jobTitle": {
"description": "Job title for maker.",
"type": "string"
},
"loginId": {
"description": "Email address of the user.",
"examples": [
"user@example.com"
],
"type": "string"
},
"name": {
"description": "Name of the maker.",
"examples": [
"John Doe"
],
"type": "string"
},
"pictureLink": {
"description": "Browser-friendly link to the maker's avatar
image.",
"examples": [
"https://cdn.coda.io/avatars/default_avatar.png"
],
"type": "string",
"format": "url"
},
"slug": {
"description": "Maker profile identifier for the maker.",
"type": "string"
}
},
"additionalProperties": false,
"x-schema-name": "Maker"
}
Fields§
§description: Option<String>
Description for the maker.
employer: Option<String>
Employer for maker.
job_title: Option<String>
Job title for maker.
login_id: String
Email address of the user.
name: String
Name of the maker.
picture_link: Option<String>
Browser-friendly link to the maker’s avatar image.
slug: Option<String>
Maker profile identifier for the maker.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Maker
impl<'de> Deserialize<'de> for Maker
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
Auto Trait Implementations§
impl Freeze for Maker
impl RefUnwindSafe for Maker
impl Send for Maker
impl Sync for Maker
impl Unpin for Maker
impl UnwindSafe for Maker
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