pub struct TypeChecking {
pub expression_warnings: Option<Vec<ExpressionWarning>>,
}
Expand description
TypeChecking contains results of type checking the expressions in the ValidatingAdmissionPolicy
Fields§
§expression_warnings: Option<Vec<ExpressionWarning>>
The type checking warnings for each expression.
Trait Implementations§
Source§impl Clone for TypeChecking
impl Clone for TypeChecking
Source§fn clone(&self) -> TypeChecking
fn clone(&self) -> TypeChecking
Returns a copy 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 TypeChecking
impl Debug for TypeChecking
Source§impl DeepMerge for TypeChecking
impl DeepMerge for TypeChecking
Source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.Source§impl Default for TypeChecking
impl Default for TypeChecking
Source§fn default() -> TypeChecking
fn default() -> TypeChecking
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TypeChecking
impl<'de> Deserialize<'de> for TypeChecking
Source§fn 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
Source§impl JsonSchema for TypeChecking
impl JsonSchema for TypeChecking
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn json_schema(__gen: &mut SchemaGenerator) -> Schema
fn json_schema(__gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn 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 moreSource§impl PartialEq for TypeChecking
impl PartialEq for TypeChecking
Source§impl Serialize for TypeChecking
impl Serialize for TypeChecking
impl StructuralPartialEq for TypeChecking
Auto Trait Implementations§
impl Freeze for TypeChecking
impl RefUnwindSafe for TypeChecking
impl Send for TypeChecking
impl Sync for TypeChecking
impl Unpin for TypeChecking
impl UnwindSafe for TypeChecking
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