pub struct ReplayWebhookResponse {
pub assets: Vec<String>,
pub ok: bool,
pub reason: Option<String>,
pub skipped: Option<bool>,
pub version: Option<String>,
}Expand description
ReplayWebhookResponse
JSON schema
{
"type": "object",
"required": [
"ok"
],
"properties": {
"assets": {
"type": "array",
"items": {
"type": "string"
}
},
"ok": {
"type": "boolean"
},
"reason": {
"type": "string"
},
"skipped": {
"type": "boolean"
},
"version": {
"type": "string"
}
}
}Fields§
§assets: Vec<String>§ok: bool§reason: Option<String>§skipped: Option<bool>§version: Option<String>Implementations§
Source§impl ReplayWebhookResponse
impl ReplayWebhookResponse
pub fn builder() -> ReplayWebhookResponse
Trait Implementations§
Source§impl Clone for ReplayWebhookResponse
impl Clone for ReplayWebhookResponse
Source§fn clone(&self) -> ReplayWebhookResponse
fn clone(&self) -> ReplayWebhookResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReplayWebhookResponse
impl Debug for ReplayWebhookResponse
Source§impl<'de> Deserialize<'de> for ReplayWebhookResponse
impl<'de> Deserialize<'de> for ReplayWebhookResponse
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<&ReplayWebhookResponse> for ReplayWebhookResponse
impl From<&ReplayWebhookResponse> for ReplayWebhookResponse
Source§fn from(value: &ReplayWebhookResponse) -> Self
fn from(value: &ReplayWebhookResponse) -> Self
Converts to this type from the input type.
Source§impl From<ReplayWebhookResponse> for ReplayWebhookResponse
impl From<ReplayWebhookResponse> for ReplayWebhookResponse
Source§fn from(value: ReplayWebhookResponse) -> Self
fn from(value: ReplayWebhookResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for ReplayWebhookResponse
impl Serialize for ReplayWebhookResponse
Source§impl TryFrom<ReplayWebhookResponse> for ReplayWebhookResponse
impl TryFrom<ReplayWebhookResponse> for ReplayWebhookResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: ReplayWebhookResponse) -> Result<Self, ConversionError>
fn try_from(value: ReplayWebhookResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ReplayWebhookResponse
impl RefUnwindSafe for ReplayWebhookResponse
impl Send for ReplayWebhookResponse
impl Sync for ReplayWebhookResponse
impl Unpin for ReplayWebhookResponse
impl UnsafeUnpin for ReplayWebhookResponse
impl UnwindSafe for ReplayWebhookResponse
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