pub struct ResolutionContext {
pub current_group: Option<String>,
pub current_version: Option<String>,
pub current_kind: Option<String>,
}Fields§
§current_group: Option<String>Current module’s group (e.g., “apiextensions.crossplane.io”)
current_version: Option<String>Current module’s version (e.g., “v1beta1”)
current_kind: Option<String>Current module’s kind (e.g., “composition”)
Trait Implementations§
Source§impl Clone for ResolutionContext
impl Clone for ResolutionContext
Source§fn clone(&self) -> ResolutionContext
fn clone(&self) -> ResolutionContext
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 moreAuto Trait Implementations§
impl Freeze for ResolutionContext
impl RefUnwindSafe for ResolutionContext
impl Send for ResolutionContext
impl Sync for ResolutionContext
impl Unpin for ResolutionContext
impl UnwindSafe for ResolutionContext
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