pub struct GetPrepInstructionsResponse {
pub payload: Option<Box<GetPrepInstructionsResult>>,
pub errors: Option<Vec<Error>>,
}Expand description
GetPrepInstructionsResponse : The response schema for the getPrepInstructions operation.
Fields§
§payload: Option<Box<GetPrepInstructionsResult>>§errors: Option<Vec<Error>>A list of error responses returned when a request is unsuccessful.
Implementations§
Source§impl GetPrepInstructionsResponse
impl GetPrepInstructionsResponse
Sourcepub fn new() -> GetPrepInstructionsResponse
pub fn new() -> GetPrepInstructionsResponse
The response schema for the getPrepInstructions operation.
Trait Implementations§
Source§impl Clone for GetPrepInstructionsResponse
impl Clone for GetPrepInstructionsResponse
Source§fn clone(&self) -> GetPrepInstructionsResponse
fn clone(&self) -> GetPrepInstructionsResponse
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 GetPrepInstructionsResponse
impl Debug for GetPrepInstructionsResponse
Source§impl Default for GetPrepInstructionsResponse
impl Default for GetPrepInstructionsResponse
Source§fn default() -> GetPrepInstructionsResponse
fn default() -> GetPrepInstructionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetPrepInstructionsResponse
impl<'de> Deserialize<'de> for GetPrepInstructionsResponse
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
impl StructuralPartialEq for GetPrepInstructionsResponse
Auto Trait Implementations§
impl Freeze for GetPrepInstructionsResponse
impl RefUnwindSafe for GetPrepInstructionsResponse
impl Send for GetPrepInstructionsResponse
impl Sync for GetPrepInstructionsResponse
impl Unpin for GetPrepInstructionsResponse
impl UnwindSafe for GetPrepInstructionsResponse
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