pub enum GetGwApiV1EnumerationsEnumerationtypeResponse {
Ok(EnumerationResponse),
BadRequest,
Unauthorized,
Forbidden,
UnsupportedMediaType,
InternalServerError,
Unknown,
}Expand description
Response types for get_gw_api_v1_enumerations_enumerationtype
Variants§
Ok(EnumerationResponse)
200: Get enumerations
BadRequest
400: Returns error description representing bad request
401: Returns error description representing access issue
Forbidden
403: Returns error description representing access issue
UnsupportedMediaType
415: Unsupported Media Type
InternalServerError
500: Returns error description representing internal server error
Unknown
default: Unknown response
Trait Implementations§
Source§impl Clone for GetGwApiV1EnumerationsEnumerationtypeResponse
impl Clone for GetGwApiV1EnumerationsEnumerationtypeResponse
Source§fn clone(&self) -> GetGwApiV1EnumerationsEnumerationtypeResponse
fn clone(&self) -> GetGwApiV1EnumerationsEnumerationtypeResponse
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 moreAuto Trait Implementations§
impl Freeze for GetGwApiV1EnumerationsEnumerationtypeResponse
impl RefUnwindSafe for GetGwApiV1EnumerationsEnumerationtypeResponse
impl Send for GetGwApiV1EnumerationsEnumerationtypeResponse
impl Sync for GetGwApiV1EnumerationsEnumerationtypeResponse
impl Unpin for GetGwApiV1EnumerationsEnumerationtypeResponse
impl UnsafeUnpin for GetGwApiV1EnumerationsEnumerationtypeResponse
impl UnwindSafe for GetGwApiV1EnumerationsEnumerationtypeResponse
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