pub struct AddPackMakerRequest {
pub login_id: String,
}
Expand description
Payload for adding a Pack maker.
JSON schema
{
"description": "Payload for adding a Pack maker.",
"type": "object",
"required": [
"loginId"
],
"properties": {
"loginId": {
"description": "The email of the Pack maker.",
"examples": [
"api@coda.io"
],
"type": "string"
}
},
"additionalProperties": false,
"x-schema-name": "AddPackMakerRequest"
}
Fields§
§login_id: String
The email of the Pack maker.
Trait Implementations§
Source§impl Clone for AddPackMakerRequest
impl Clone for AddPackMakerRequest
Source§fn clone(&self) -> AddPackMakerRequest
fn clone(&self) -> AddPackMakerRequest
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 AddPackMakerRequest
impl Debug for AddPackMakerRequest
Source§impl<'de> Deserialize<'de> for AddPackMakerRequest
impl<'de> Deserialize<'de> for AddPackMakerRequest
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<&AddPackMakerRequest> for AddPackMakerRequest
impl From<&AddPackMakerRequest> for AddPackMakerRequest
Source§fn from(value: &AddPackMakerRequest) -> Self
fn from(value: &AddPackMakerRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AddPackMakerRequest
impl RefUnwindSafe for AddPackMakerRequest
impl Send for AddPackMakerRequest
impl Sync for AddPackMakerRequest
impl Unpin for AddPackMakerRequest
impl UnwindSafe for AddPackMakerRequest
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