pub struct GetLabelsResponse {
pub payload: Option<Box<LabelDownloadUrl>>,
pub errors: Option<Vec<Error>>,
}Expand description
GetLabelsResponse : The response schema for the getLabels operation.
Fields
payload: Option<Box<LabelDownloadUrl>>errors: Option<Vec<Error>>A list of error responses returned when a request is unsuccessful.
Implementations
sourceimpl GetLabelsResponse
impl GetLabelsResponse
sourcepub fn new() -> GetLabelsResponse
pub fn new() -> GetLabelsResponse
The response schema for the getLabels operation.
Trait Implementations
sourceimpl Clone for GetLabelsResponse
impl Clone for GetLabelsResponse
sourcefn clone(&self) -> GetLabelsResponse
fn clone(&self) -> GetLabelsResponse
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for GetLabelsResponse
impl Debug for GetLabelsResponse
sourceimpl Default for GetLabelsResponse
impl Default for GetLabelsResponse
sourcefn default() -> GetLabelsResponse
fn default() -> GetLabelsResponse
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for GetLabelsResponse
impl<'de> Deserialize<'de> for GetLabelsResponse
sourcefn 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
sourceimpl PartialEq<GetLabelsResponse> for GetLabelsResponse
impl PartialEq<GetLabelsResponse> for GetLabelsResponse
sourcefn eq(&self, other: &GetLabelsResponse) -> bool
fn eq(&self, other: &GetLabelsResponse) -> bool
sourceimpl Serialize for GetLabelsResponse
impl Serialize for GetLabelsResponse
impl StructuralPartialEq for GetLabelsResponse
Auto Trait Implementations
impl RefUnwindSafe for GetLabelsResponse
impl Send for GetLabelsResponse
impl Sync for GetLabelsResponse
impl Unpin for GetLabelsResponse
impl UnwindSafe for GetLabelsResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more