pub struct K8sCluster {Show 15 fields
pub id: Uuid,
pub env_id: Option<Uuid>,
pub provider_id: String,
pub created_at: DateTime<Utc>,
pub last_seen_at: DateTime<Utc>,
pub name: String,
pub region_name: String,
pub is_ok: bool,
pub not_ok_reason: Option<String>,
pub ignore: bool,
pub ingress_domain: Option<String>,
pub ingress_class: Option<String>,
pub ingress_tls_secret_name: Option<String>,
pub grafana_url: Option<String>,
pub grafana_datasource_name: Option<String>,
}
Fields§
§id: Uuid
§env_id: Option<Uuid>
§provider_id: String
§created_at: DateTime<Utc>
§last_seen_at: DateTime<Utc>
§name: String
§region_name: String
§is_ok: bool
§not_ok_reason: Option<String>
§ignore: bool
§ingress_domain: Option<String>
§ingress_class: Option<String>
§ingress_tls_secret_name: Option<String>
§grafana_url: Option<String>
§grafana_datasource_name: Option<String>
Trait Implementations§
Source§impl Clone for K8sCluster
impl Clone for K8sCluster
Source§fn clone(&self) -> K8sCluster
fn clone(&self) -> K8sCluster
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 K8sCluster
impl Debug for K8sCluster
Source§impl<'de> Deserialize<'de> for K8sCluster
impl<'de> Deserialize<'de> for K8sCluster
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 K8sCluster
impl RefUnwindSafe for K8sCluster
impl Send for K8sCluster
impl Sync for K8sCluster
impl Unpin for K8sCluster
impl UnwindSafe for K8sCluster
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