pub enum ListIngressSuccess {
Status200(Vec<IngressResponse>),
UnknownValue(Value),
}Expand description
struct for typed successes of method list_ingress
Variants§
Status200(Vec<IngressResponse>)
UnknownValue(Value)
Trait Implementations§
Source§impl Clone for ListIngressSuccess
impl Clone for ListIngressSuccess
Source§fn clone(&self) -> ListIngressSuccess
fn clone(&self) -> ListIngressSuccess
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ListIngressSuccess
impl Debug for ListIngressSuccess
Source§impl<'de> Deserialize<'de> for ListIngressSuccess
impl<'de> Deserialize<'de> for ListIngressSuccess
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
Auto Trait Implementations§
impl Freeze for ListIngressSuccess
impl RefUnwindSafe for ListIngressSuccess
impl Send for ListIngressSuccess
impl Sync for ListIngressSuccess
impl Unpin for ListIngressSuccess
impl UnwindSafe for ListIngressSuccess
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