pub struct CreateClaimResponse {
pub claim_id: Option<String>,
}Expand description
CreateClaimResponse : The response schema for the createClaim operation.
Fields§
§claim_id: Option<String>The claim identifier originally returned by the createClaim operation.
Implementations§
Source§impl CreateClaimResponse
impl CreateClaimResponse
Sourcepub fn new() -> CreateClaimResponse
pub fn new() -> CreateClaimResponse
The response schema for the createClaim operation.
Trait Implementations§
Source§impl Clone for CreateClaimResponse
impl Clone for CreateClaimResponse
Source§fn clone(&self) -> CreateClaimResponse
fn clone(&self) -> CreateClaimResponse
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 CreateClaimResponse
impl Debug for CreateClaimResponse
Source§impl Default for CreateClaimResponse
impl Default for CreateClaimResponse
Source§fn default() -> CreateClaimResponse
fn default() -> CreateClaimResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateClaimResponse
impl<'de> Deserialize<'de> for CreateClaimResponse
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 PartialEq for CreateClaimResponse
impl PartialEq for CreateClaimResponse
Source§impl Serialize for CreateClaimResponse
impl Serialize for CreateClaimResponse
impl StructuralPartialEq for CreateClaimResponse
Auto Trait Implementations§
impl Freeze for CreateClaimResponse
impl RefUnwindSafe for CreateClaimResponse
impl Send for CreateClaimResponse
impl Sync for CreateClaimResponse
impl Unpin for CreateClaimResponse
impl UnwindSafe for CreateClaimResponse
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