pub struct ReleaseResponse {
pub created_at: String,
pub git_metadata: Option<GitMetadataResponse>,
pub id: String,
pub stack: StackByPlatform,
}Expand description
ReleaseResponse
JSON schema
{
"type": "object",
"required": [
"createdAt",
"id",
"stack"
],
"properties": {
"createdAt": {
"type": "string"
},
"gitMetadata": {
"$ref": "#/components/schemas/GitMetadataResponse"
},
"id": {
"type": "string"
},
"stack": {
"$ref": "#/components/schemas/StackByPlatform"
}
}
}Fields§
§created_at: String§git_metadata: Option<GitMetadataResponse>§id: String§stack: StackByPlatformImplementations§
Source§impl ReleaseResponse
impl ReleaseResponse
pub fn builder() -> ReleaseResponse
Trait Implementations§
Source§impl Clone for ReleaseResponse
impl Clone for ReleaseResponse
Source§fn clone(&self) -> ReleaseResponse
fn clone(&self) -> ReleaseResponse
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 ReleaseResponse
impl Debug for ReleaseResponse
Source§impl<'de> Deserialize<'de> for ReleaseResponse
impl<'de> Deserialize<'de> for ReleaseResponse
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<&ReleaseResponse> for ReleaseResponse
impl From<&ReleaseResponse> for ReleaseResponse
Source§fn from(value: &ReleaseResponse) -> Self
fn from(value: &ReleaseResponse) -> Self
Converts to this type from the input type.
Source§impl From<ReleaseResponse> for ReleaseResponse
impl From<ReleaseResponse> for ReleaseResponse
Source§fn from(value: ReleaseResponse) -> Self
fn from(value: ReleaseResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for ReleaseResponse
impl Serialize for ReleaseResponse
Source§impl TryFrom<ReleaseResponse> for ReleaseResponse
impl TryFrom<ReleaseResponse> for ReleaseResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: ReleaseResponse) -> Result<Self, ConversionError>
fn try_from(value: ReleaseResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ReleaseResponse
impl RefUnwindSafe for ReleaseResponse
impl Send for ReleaseResponse
impl Sync for ReleaseResponse
impl Unpin for ReleaseResponse
impl UnsafeUnpin for ReleaseResponse
impl UnwindSafe for ReleaseResponse
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