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