pub struct ServiceConnection {
pub pk: Uuid,
pub name: String,
pub local: Option<bool>,
pub component: String,
pub verbose_name: String,
pub verbose_name_plural: String,
pub meta_model_name: String,
}
Expand description
ServiceConnection : ServiceConnection Serializer
Fields§
§pk: Uuid
§name: String
§local: Option<bool>
If enabled, use the local connection. Required Docker socket/Kubernetes Integration
component: String
Return component used to edit this object
verbose_name: String
Return object’s verbose_name
verbose_name_plural: String
Return object’s plural verbose_name
meta_model_name: String
Return internal model name
Implementations§
Trait Implementations§
Source§impl Clone for ServiceConnection
impl Clone for ServiceConnection
Source§fn clone(&self) -> ServiceConnection
fn clone(&self) -> ServiceConnection
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 ServiceConnection
impl Debug for ServiceConnection
Source§impl Default for ServiceConnection
impl Default for ServiceConnection
Source§fn default() -> ServiceConnection
fn default() -> ServiceConnection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceConnection
impl<'de> Deserialize<'de> for ServiceConnection
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 ServiceConnection
impl PartialEq for ServiceConnection
Source§impl Serialize for ServiceConnection
impl Serialize for ServiceConnection
impl StructuralPartialEq for ServiceConnection
Auto Trait Implementations§
impl Freeze for ServiceConnection
impl RefUnwindSafe for ServiceConnection
impl Send for ServiceConnection
impl Sync for ServiceConnection
impl Unpin for ServiceConnection
impl UnwindSafe for ServiceConnection
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