pub struct InfraRef {
pub path: &'static str,
pub form: InfraForm,
pub only_odata_type: Option<&'static str>,
}Expand description
An infrastructure-reference field: path (registry path syntax, a.b[].c)
addresses a value that names supporting Azure infrastructure rather than
another rigg-managed resource. only_odata_type, when set, restricts the
rule to array elements whose @odata.type ends with the given string’s
last dot-segment (e.g. "#Microsoft.Skills.Text.AzureOpenAIEmbeddingSkill"
matches any ...AzureOpenAIEmbeddingSkill namespace).
Fields§
§path: &'static str§form: InfraForm§only_odata_type: Option<&'static str>Trait Implementations§
Auto Trait Implementations§
impl Freeze for InfraRef
impl RefUnwindSafe for InfraRef
impl Send for InfraRef
impl Sync for InfraRef
impl Unpin for InfraRef
impl UnsafeUnpin for InfraRef
impl UnwindSafe for InfraRef
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