pub struct EnvironmentLink {
pub environment_name: Option<String>,
pub link_name: Option<String>,
}
Expand description
A link to another environment, defined in the environment's manifest. Links provide connection information in system properties that can be used to connect to another environment in the same group. See Environment Manifest (env.yaml) for details.
Fields§
§environment_name: Option<String>
The name of the linked environment (the dependency).
link_name: Option<String>
The name of the link.
Trait Implementations§
Source§impl Clone for EnvironmentLink
impl Clone for EnvironmentLink
Source§fn clone(&self) -> EnvironmentLink
fn clone(&self) -> EnvironmentLink
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 EnvironmentLink
impl Debug for EnvironmentLink
Source§impl Default for EnvironmentLink
impl Default for EnvironmentLink
Source§fn default() -> EnvironmentLink
fn default() -> EnvironmentLink
Returns the “default value” for a type. Read more
Source§impl PartialEq for EnvironmentLink
impl PartialEq for EnvironmentLink
impl StructuralPartialEq for EnvironmentLink
Auto Trait Implementations§
impl Freeze for EnvironmentLink
impl RefUnwindSafe for EnvironmentLink
impl Send for EnvironmentLink
impl Sync for EnvironmentLink
impl Unpin for EnvironmentLink
impl UnwindSafe for EnvironmentLink
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