Struct SchemaFragment

Source
pub struct SchemaFragment { /* private fields */ }
Expand description

Contains all the type information used to construct a Schema that can be used to validate a policy.

Implementations§

Source§

impl SchemaFragment

Source

pub fn namespace_annotations( &self, namespace: EntityNamespace, ) -> Option<impl Iterator<Item = (&str, &str)>>

Get annotations of a non-empty namespace.

We do not allow namespace-level annotations on the empty namespace.

Returns None if namespace is not found in the SchemaFragment

Source

pub fn namespace_annotation( &self, namespace: EntityNamespace, annotation_key: impl AsRef<str>, ) -> Option<&str>

Get annotation value of a non-empty namespace by annotation key annotation_key

We do not allow namespace-level annotations on the empty namespace.

Returns None if namespace is not found in the SchemaFragment or annotation_key is not a valid annotation key or it does not exist

Source

pub fn common_type_annotations( &self, namespace: Option<EntityNamespace>, ty: &str, ) -> Option<impl Iterator<Item = (&str, &str)>>

Get annotations of a common type declaration

Returns None if namespace is not found in the SchemaFragment or ty is not a valid common type ID or ty is not found in the corresponding namespace definition

Source

pub fn common_type_annotation( &self, namespace: Option<EntityNamespace>, ty: &str, annotation_key: impl AsRef<str>, ) -> Option<&str>

Get annotation value of a common type declaration by annotation key annotation_key

Returns None if namespace is not found in the SchemaFragment or ty is not a valid common type ID or ty is not found in the corresponding namespace definition or annotation_key is not a valid annotation key or it does not exist

Source

pub fn entity_type_annotations( &self, namespace: Option<EntityNamespace>, ty: &str, ) -> Option<impl Iterator<Item = (&str, &str)>>

Get annotations of an entity type declaration

Returns None if namespace is not found in the SchemaFragment or ty is not a valid entity type name or ty is not found in the corresponding namespace definition

Source

pub fn entity_type_annotation( &self, namespace: Option<EntityNamespace>, ty: &str, annotation_key: impl AsRef<str>, ) -> Option<&str>

Get annotation value of an entity type declaration by annotation key annotation_key

Returns None if namespace is not found in the SchemaFragment or ty is not a valid entity type name or ty is not found in the corresponding namespace definition or annotation_key is not a valid annotation key or it does not exist

Source

pub fn action_annotations( &self, namespace: Option<EntityNamespace>, id: &EntityId, ) -> Option<impl Iterator<Item = (&str, &str)>>

Get annotations of an action declaration

Returns None if namespace is not found in the SchemaFragment or id is not found in the corresponding namespace definition

Source

pub fn action_annotation( &self, namespace: Option<EntityNamespace>, id: &EntityId, annotation_key: impl AsRef<str>, ) -> Option<&str>

Get annotation value of an action declaration by annotation key annotation_key

Returns None if namespace is not found in the SchemaFragment or id is not found in the corresponding namespace definition or annotation_key is not a valid annotation key or it does not exist

Source

pub fn namespaces(&self) -> impl Iterator<Item = Option<EntityNamespace>> + '_

Extract namespaces defined in this SchemaFragment.

None indicates the empty namespace.

Source

pub fn from_json_str(src: &str) -> Result<Self, SchemaError>

Create a SchemaFragment from a string containing JSON in the JSON schema format.

Source

pub fn from_json_value(json: Value) -> Result<Self, SchemaError>

Create a SchemaFragment from a JSON value (which should be an object of the shape required for the JSON schema format).

Source

pub fn from_cedarschema_file( r: impl Read, ) -> Result<(Self, impl Iterator<Item = SchemaWarning>), CedarSchemaError>

Parse a SchemaFragment from a reader containing the Cedar schema syntax

Source

pub fn from_cedarschema_str( src: &str, ) -> Result<(Self, impl Iterator<Item = SchemaWarning>), CedarSchemaError>

Parse a SchemaFragment from a string containing the Cedar schema syntax

Source

pub fn from_json_file(file: impl Read) -> Result<Self, SchemaError>

Create a SchemaFragment directly from a JSON file (which should contain an object of the shape required for the JSON schema format).

Source

pub fn to_json_value(self) -> Result<Value, SchemaError>

Serialize this SchemaFragment as a JSON value

Source

pub fn to_json_string(&self) -> Result<String, SchemaError>

Serialize this SchemaFragment as a JSON string

Source

pub fn to_cedarschema(&self) -> Result<String, ToCedarSchemaError>

Serialize this SchemaFragment into a string in the Cedar schema syntax

Trait Implementations§

Source§

impl Clone for SchemaFragment

Source§

fn clone(&self) -> SchemaFragment

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SchemaFragment

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl FromStr for SchemaFragment

Source§

fn from_str(src: &str) -> Result<Self, Self::Err>

Construct SchemaFragment from a string containing a schema formatted in the Cedar schema format. This can fail if the string is not a valid schema. This function does not check for consistency in the schema (e.g., references to undefined entities) because this is not required until a Schema is constructed.

Source§

type Err = CedarSchemaError

The associated error which can be returned from parsing.
Source§

impl TryInto<Schema> for SchemaFragment

Source§

fn try_into(self) -> Result<Schema, Self::Error>

Convert SchemaFragment into a Schema. To build the Schema we need to have all entity types defined, so an error will be returned if any undeclared entity types are referenced in the schema fragment.

Source§

type Error = SchemaError

The type returned in the event of a conversion error.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.