pub struct ServiceInstance {
pub id: Option<String>,
pub url: Option<String>,
pub config: Option<Value>,
pub external_attributes: Option<Value>,
pub service_slug: Option<String>,
pub service_path: Option<String>,
pub service_name: Option<String>,
pub env: Option<Value>,
pub snippets: Option<Vec<Value>>,
pub auth_url: Option<String>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
}
Fields§
§id: Option<String>
§url: Option<String>
§config: Option<Value>
§external_attributes: Option<Value>
§service_slug: Option<String>
§service_path: Option<String>
§service_name: Option<String>
§env: Option<Value>
§snippets: Option<Vec<Value>>
§auth_url: Option<String>
§created_at: Option<String>
§updated_at: Option<String>
Implementations§
Source§impl ServiceInstance
impl ServiceInstance
pub fn new() -> ServiceInstance
Trait Implementations§
Source§impl Clone for ServiceInstance
impl Clone for ServiceInstance
Source§fn clone(&self) -> ServiceInstance
fn clone(&self) -> ServiceInstance
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 ServiceInstance
impl Debug for ServiceInstance
Source§impl<'de> Deserialize<'de> for ServiceInstance
impl<'de> Deserialize<'de> for ServiceInstance
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 ServiceInstance
impl PartialEq for ServiceInstance
Source§impl Serialize for ServiceInstance
impl Serialize for ServiceInstance
impl StructuralPartialEq for ServiceInstance
Auto Trait Implementations§
impl Freeze for ServiceInstance
impl RefUnwindSafe for ServiceInstance
impl Send for ServiceInstance
impl Sync for ServiceInstance
impl Unpin for ServiceInstance
impl UnwindSafe for ServiceInstance
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