pub struct ReferenceEntry {
pub name: Name,
pub resource: URI,
}Fields§
§name: Name§resource: URITrait Implementations§
Source§impl AST for ReferenceEntry
impl AST for ReferenceEntry
fn parse(input: &str) -> ParseResult<'_, Self>
Source§impl Clone for ReferenceEntry
impl Clone for ReferenceEntry
Source§fn clone(&self) -> ReferenceEntry
fn clone(&self) -> ReferenceEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReferenceEntry
impl Debug for ReferenceEntry
Source§impl FromStr for ReferenceEntry
impl FromStr for ReferenceEntry
Source§impl PartialEq for ReferenceEntry
impl PartialEq for ReferenceEntry
impl StructuralPartialEq for ReferenceEntry
Auto Trait Implementations§
impl Freeze for ReferenceEntry
impl RefUnwindSafe for ReferenceEntry
impl Send for ReferenceEntry
impl Sync for ReferenceEntry
impl Unpin for ReferenceEntry
impl UnsafeUnpin for ReferenceEntry
impl UnwindSafe for ReferenceEntry
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
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