pub struct RulesetScheme {
pub artefact: CommonArtefactType,
pub is_partial: Option<bool>,
pub rulesets: Option<Vec<Item>>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
The item scheme for a ruleset.
Fields§
§artefact: CommonArtefactType
§is_partial: Option<bool>
§rulesets: Option<Vec<Item>>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Artefact for RulesetScheme
impl Artefact for RulesetScheme
fn artefact(&self) -> &CommonArtefactType
fn id(&self) -> &String
fn agency_id(&self) -> Option<&String>
fn version(&self) -> Option<&String>
fn name(&self) -> Option<&String>
fn names(&self) -> Option<&LocalizedText>
fn valid_from(&self) -> Option<&String>
fn valid_to(&self) -> Option<&String>
fn is_external_reference(&self) -> Option<bool>
fn annotations(&self) -> Option<&Vec<Annotation>>
fn links(&self) -> Option<&Vec<Link>>
Source§impl Clone for RulesetScheme
impl Clone for RulesetScheme
Source§fn clone(&self) -> RulesetScheme
fn clone(&self) -> RulesetScheme
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 RulesetScheme
impl Debug for RulesetScheme
Source§impl<'de> Deserialize<'de> for RulesetScheme
impl<'de> Deserialize<'de> for RulesetScheme
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 ItemScheme for RulesetScheme
impl ItemScheme for RulesetScheme
Source§impl PartialEq for RulesetScheme
impl PartialEq for RulesetScheme
Source§impl Serialize for RulesetScheme
impl Serialize for RulesetScheme
impl Eq for RulesetScheme
impl StructuralPartialEq for RulesetScheme
Auto Trait Implementations§
impl Freeze for RulesetScheme
impl RefUnwindSafe for RulesetScheme
impl Send for RulesetScheme
impl Sync for RulesetScheme
impl Unpin for RulesetScheme
impl UnwindSafe for RulesetScheme
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