pub struct UpdatePackReleaseRequest {
pub release_notes: Option<String>,
}
Expand description
Payload for updating a new Pack release.
JSON schema
{
"description": "Payload for updating a new Pack release.",
"type": "object",
"properties": {
"releaseNotes": {
"description": "Notes about key features or changes in this release
that the Pack maker wants to communicate to users.",
"examples": [
"The first release."
],
"type": "string"
}
},
"additionalProperties": false,
"x-schema-name": "UpdatePackReleaseRequest"
}
Fields§
§release_notes: Option<String>
Notes about key features or changes in this release that the Pack maker wants to communicate to users.
Trait Implementations§
Source§impl Clone for UpdatePackReleaseRequest
impl Clone for UpdatePackReleaseRequest
Source§fn clone(&self) -> UpdatePackReleaseRequest
fn clone(&self) -> UpdatePackReleaseRequest
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 UpdatePackReleaseRequest
impl Debug for UpdatePackReleaseRequest
Source§impl Default for UpdatePackReleaseRequest
impl Default for UpdatePackReleaseRequest
Source§impl<'de> Deserialize<'de> for UpdatePackReleaseRequest
impl<'de> Deserialize<'de> for UpdatePackReleaseRequest
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<&UpdatePackReleaseRequest> for UpdatePackReleaseRequest
impl From<&UpdatePackReleaseRequest> for UpdatePackReleaseRequest
Source§fn from(value: &UpdatePackReleaseRequest) -> Self
fn from(value: &UpdatePackReleaseRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UpdatePackReleaseRequest
impl RefUnwindSafe for UpdatePackReleaseRequest
impl Send for UpdatePackReleaseRequest
impl Sync for UpdatePackReleaseRequest
impl Unpin for UpdatePackReleaseRequest
impl UnwindSafe for UpdatePackReleaseRequest
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