pub struct OutputResponse {
pub metadata: OutputMetadataResponse,
pub output: OutputDto,
}
Expand description
Response of GET /api/core/v2/outputs/{output_id}. Returns an output and its metadata.
Fields§
§metadata: OutputMetadataResponse
§output: OutputDto
Trait Implementations§
Source§impl Clone for OutputResponse
impl Clone for OutputResponse
Source§fn clone(&self) -> OutputResponse
fn clone(&self) -> OutputResponse
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 OutputResponse
impl Debug for OutputResponse
Source§impl<'de> Deserialize<'de> for OutputResponse
impl<'de> Deserialize<'de> for OutputResponse
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 IntoResponse for OutputResponse
impl IntoResponse for OutputResponse
Source§fn into_response(self) -> Response<BoxBody>
fn into_response(self) -> Response<BoxBody>
Create a response.
Source§impl PartialEq for OutputResponse
impl PartialEq for OutputResponse
Source§impl Serialize for OutputResponse
impl Serialize for OutputResponse
impl Eq for OutputResponse
impl StructuralPartialEq for OutputResponse
Auto Trait Implementations§
impl Freeze for OutputResponse
impl RefUnwindSafe for OutputResponse
impl Send for OutputResponse
impl Sync for OutputResponse
impl Unpin for OutputResponse
impl UnwindSafe for OutputResponse
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