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