Struct gateway_api::standard::referencegrants::ReferenceGrantSpec
source · pub struct ReferenceGrantSpec {
pub from: Vec<ReferenceGrantFrom>,
pub to: Vec<ReferenceGrantTo>,
}
Expand description
Spec defines the desired state of ReferenceGrant.
Fields
from: Vec<ReferenceGrantFrom>
From describes the trusted namespaces and kinds that can reference the resources described in “To”. Each entry in this list must be considered to be an additional place that references can be valid from, or to put this another way, entries must be combined using OR. Support: Core
to: Vec<ReferenceGrantTo>
To describes the resources that may be referenced by the resources described in “From”. Each entry in this list must be considered to be an additional place that references can be valid to, or to put this another way, entries must be combined using OR. Support: Core
Trait Implementations
sourceimpl Clone for ReferenceGrantSpec
impl Clone for ReferenceGrantSpec
sourcefn clone(&self) -> ReferenceGrantSpec
fn clone(&self) -> ReferenceGrantSpec
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ReferenceGrantSpec
impl Debug for ReferenceGrantSpec
sourceimpl<'de> Deserialize<'de> for ReferenceGrantSpec
impl<'de> Deserialize<'de> for ReferenceGrantSpec
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl JsonSchema for ReferenceGrantSpec
impl JsonSchema for ReferenceGrantSpec
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresourceimpl Serialize for ReferenceGrantSpec
impl Serialize for ReferenceGrantSpec
Auto Trait Implementations
impl RefUnwindSafe for ReferenceGrantSpec
impl Send for ReferenceGrantSpec
impl Sync for ReferenceGrantSpec
impl Unpin for ReferenceGrantSpec
impl UnwindSafe for ReferenceGrantSpec
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more