pub trait SchemaExt: Schema {
// Provided methods
fn is_member(&self) -> bool { ... }
fn is_structure(&self) -> bool { ... }
fn is_union(&self) -> bool { ... }
fn is_list(&self) -> bool { ... }
fn is_map(&self) -> bool { ... }
fn is_blob(&self) -> bool { ... }
fn is_string(&self) -> bool { ... }
}Expand description
Helper methods for Schema trait.
Provided Methods§
Sourcefn is_structure(&self) -> bool
fn is_structure(&self) -> bool
Returns true if this is a structure schema.