pub struct Notation {
pub id: Option<String>,
pub name: String,
pub public: Option<String>,
pub system: Option<String>,
pub annotation: Option<Annotation>,
}Fields§
§id: Option<String>§name: String§public: Option<String>§system: Option<String>§annotation: Option<Annotation>Trait Implementations§
Source§impl<'de> Deserializer<'de, Notation> for Box<NotationDeserializer>
impl<'de> Deserializer<'de, Notation> for Box<NotationDeserializer>
Source§fn init<R>(reader: &R, event: Event<'de>) -> DeserializerResult<'de, Notation>where
R: DeserializeReader,
fn init<R>(reader: &R, event: Event<'de>) -> DeserializerResult<'de, Notation>where
R: DeserializeReader,
Source§fn next<R>(
self,
reader: &R,
event: Event<'de>,
) -> DeserializerResult<'de, Notation>where
R: DeserializeReader,
fn next<R>(
self,
reader: &R,
event: Event<'de>,
) -> DeserializerResult<'de, Notation>where
R: DeserializeReader,
Source§impl WithDeserializer for Notation
impl WithDeserializer for Notation
Source§type Deserializer = Box<NotationDeserializer>
type Deserializer = Box<NotationDeserializer>
The deserializer to use for this type.
impl Eq for Notation
impl StructuralPartialEq for Notation
Auto Trait Implementations§
impl Freeze for Notation
impl RefUnwindSafe for Notation
impl Send for Notation
impl Sync for Notation
impl Unpin for Notation
impl UnwindSafe for Notation
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