pub struct ServiceDetail {
pub name: String,
pub description: String,
pub url: Option<String>,
pub ports: Vec<(u16, PortProtocol, String)>,
pub env_vars: Vec<(String, Option<String>)>,
}Fields§
§name: String§description: String§url: Option<String>§ports: Vec<(u16, PortProtocol, String)>§env_vars: Vec<(String, Option<String>)>Auto Trait Implementations§
impl Freeze for ServiceDetail
impl RefUnwindSafe for ServiceDetail
impl Send for ServiceDetail
impl Sync for ServiceDetail
impl Unpin for ServiceDetail
impl UnsafeUnpin for ServiceDetail
impl UnwindSafe for ServiceDetail
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