pub struct K8sService {
pub api_version: String,
pub kind: String,
pub metadata: K8sMetadata,
pub spec: K8sServiceSpec,
}Expand description
Kubernetes Service
Fields§
§api_version: String§kind: String§metadata: K8sMetadata§spec: K8sServiceSpecTrait Implementations§
Source§impl Clone for K8sService
impl Clone for K8sService
Source§fn clone(&self) -> K8sService
fn clone(&self) -> K8sService
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 K8sService
impl Debug for K8sService
Source§impl<'de> Deserialize<'de> for K8sService
impl<'de> Deserialize<'de> for K8sService
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 K8sService
impl RefUnwindSafe for K8sService
impl Send for K8sService
impl Sync for K8sService
impl Unpin for K8sService
impl UnsafeUnpin for K8sService
impl UnwindSafe for K8sService
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