pub struct PackSourceCodeInfo {
pub files: Vec<PackSourceCode>,
}
Expand description
Information indicating where to upload the Pack source code, and an endpoint to mark the upload as complete.
JSON schema
{
"description": "Information indicating where to upload the Pack source
code, and an endpoint to mark the upload as complete.",
"type": "object",
"required": [
"files"
],
"properties": {
"files": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PackSourceCode"
}
}
},
"additionalProperties": false,
"x-schema-name": "PackSourceCodeInfo"
}
Fields§
§files: Vec<PackSourceCode>
Trait Implementations§
Source§impl Clone for PackSourceCodeInfo
impl Clone for PackSourceCodeInfo
Source§fn clone(&self) -> PackSourceCodeInfo
fn clone(&self) -> PackSourceCodeInfo
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 PackSourceCodeInfo
impl Debug for PackSourceCodeInfo
Source§impl<'de> Deserialize<'de> for PackSourceCodeInfo
impl<'de> Deserialize<'de> for PackSourceCodeInfo
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<&PackSourceCodeInfo> for PackSourceCodeInfo
impl From<&PackSourceCodeInfo> for PackSourceCodeInfo
Source§fn from(value: &PackSourceCodeInfo) -> Self
fn from(value: &PackSourceCodeInfo) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PackSourceCodeInfo
impl RefUnwindSafe for PackSourceCodeInfo
impl Send for PackSourceCodeInfo
impl Sync for PackSourceCodeInfo
impl Unpin for PackSourceCodeInfo
impl UnwindSafe for PackSourceCodeInfo
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