pub struct ValidationState {
pub errors: ValicoErrors,
pub missing: Vec<Url>,
pub replacement: Option<Value>,
pub evaluated: HashSet<String>,
}Fields§
§errors: ValicoErrors§missing: Vec<Url>§replacement: Option<Value>§evaluated: HashSet<String>Set of paths that have been evaluated so far. Once a path has been evaluated, it should be added
here so that unevaluatedItems and unevaluatedProperties work.
Implementations§
Source§impl ValidationState
impl ValidationState
pub fn new() -> ValidationState
Sourcepub fn is_valid(&self) -> bool
pub fn is_valid(&self) -> bool
Examples found in repository?
examples/example01.rs (line 15)
4fn main() {
5 let params = json_dsl::Builder::build(|params| {
6 params.req_nested("user", json_dsl::array(), |params| {
7 params.req_typed("name", json_dsl::string());
8 params.req_typed("friend_ids", json_dsl::array_of(json_dsl::u64()))
9 });
10 });
11
12 let mut obj = from_str(r#"{"user": {"name": "Frodo", "friend_ids": ["1223"]}}"#).unwrap();
13
14 let state = params.process(&mut obj, None);
15 if state.is_valid() {
16 println!("Result object is {}", to_string_pretty(&obj).unwrap());
17 } else {
18 panic!("Errors during process: {:?}", state);
19 }
20}pub fn is_strictly_valid(&self) -> bool
pub fn append(&mut self, second: ValidationState)
pub fn set_replacement<T: Clone + Into<Value>>(&mut self, data: Cow<'_, T>)
Trait Implementations§
Source§impl Debug for ValidationState
impl Debug for ValidationState
Source§impl Default for ValidationState
impl Default for ValidationState
Source§fn default() -> ValidationState
fn default() -> ValidationState
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ValidationState
impl !RefUnwindSafe for ValidationState
impl Send for ValidationState
impl !Sync for ValidationState
impl Unpin for ValidationState
impl UnsafeUnpin for ValidationState
impl !UnwindSafe for ValidationState
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
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.