pub struct CreatePackResponse {
pub pack_id: f64,
}
Expand description
Info about a Pack that was just created.
JSON schema
{
"description": "Info about a Pack that was just created.",
"type": "object",
"required": [
"packId"
],
"properties": {
"packId": {
"description": "The ID assigned to the newly-created Pack.",
"examples": [
123
],
"type": "number"
}
},
"additionalProperties": false,
"x-schema-name": "CreatePackResponse"
}
Fields§
§pack_id: f64
Trait Implementations§
Source§impl Clone for CreatePackResponse
impl Clone for CreatePackResponse
Source§fn clone(&self) -> CreatePackResponse
fn clone(&self) -> CreatePackResponse
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 CreatePackResponse
impl Debug for CreatePackResponse
Source§impl<'de> Deserialize<'de> for CreatePackResponse
impl<'de> Deserialize<'de> for CreatePackResponse
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<&CreatePackResponse> for CreatePackResponse
impl From<&CreatePackResponse> for CreatePackResponse
Source§fn from(value: &CreatePackResponse) -> Self
fn from(value: &CreatePackResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CreatePackResponse
impl RefUnwindSafe for CreatePackResponse
impl Send for CreatePackResponse
impl Sync for CreatePackResponse
impl Unpin for CreatePackResponse
impl UnwindSafe for CreatePackResponse
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