pub struct OperationResponse {
pub status_code: ResponseStatusCode,
pub description: Option<String>,
pub body: Option<ResponseBody>,
}Fields§
§status_code: ResponseStatusCode§description: Option<String>§body: Option<ResponseBody>Trait Implementations§
Source§impl Clone for OperationResponse
impl Clone for OperationResponse
Source§fn clone(&self) -> OperationResponse
fn clone(&self) -> OperationResponse
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 OperationResponse
impl Debug for OperationResponse
Source§impl PartialEq for OperationResponse
impl PartialEq for OperationResponse
impl StructuralPartialEq for OperationResponse
Auto Trait Implementations§
impl Freeze for OperationResponse
impl RefUnwindSafe for OperationResponse
impl Send for OperationResponse
impl Sync for OperationResponse
impl Unpin for OperationResponse
impl UnsafeUnpin for OperationResponse
impl UnwindSafe for OperationResponse
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