pub struct PhysicalRef {
pub target: Target,
pub physical: String,
pub original: Value,
pub kb_name: Option<String>,
}Expand description
A recognized infrastructure reference: what it points at, and enough of the original value to rewrite it later.
Fields§
§target: Target§physical: StringLowercase resource name (or host, for URL-shaped forms).
original: Value§kb_name: Option<String>The knowledge-base name, for InfraForm::SearchKbMcpUrl only.
Trait Implementations§
Source§impl Clone for PhysicalRef
impl Clone for PhysicalRef
Source§fn clone(&self) -> PhysicalRef
fn clone(&self) -> PhysicalRef
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PhysicalRef
impl Debug for PhysicalRef
Source§impl PartialEq for PhysicalRef
impl PartialEq for PhysicalRef
impl StructuralPartialEq for PhysicalRef
Auto Trait Implementations§
impl Freeze for PhysicalRef
impl RefUnwindSafe for PhysicalRef
impl Send for PhysicalRef
impl Sync for PhysicalRef
impl Unpin for PhysicalRef
impl UnsafeUnpin for PhysicalRef
impl UnwindSafe for PhysicalRef
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