Struct sep2_common::packages::identification::ListLink
source · pub struct ListLink {
pub all: Option<Uint32>,
pub href: String,
}
Expand description
ListLinks provide a reference, via URI, to a List.
Fields§
§all: Option<Uint32>
Indicates the total number of items in the referenced list. This attribute SHALL be present if the href is a local or relative URI. This attribute SHOULD NOT be present if the href is a remote or absolute URI, as the server may be unaware of changes to the value.
href: String
A URI reference.
Trait Implementations§
source§impl PartialEq<ListLink> for ListLink
impl PartialEq<ListLink> for ListLink
source§impl YaSerialize for ListLink
impl YaSerialize for ListLink
fn name() -> &'static strwhere Self: Sized,
fn serialize<W: Write>(&self, writer: &mut Serializer<W>) -> Result<(), String>where Self: Sized,
fn serialize_attributes( &self, source_attributes: Vec<OwnedAttribute>, source_namespace: Namespace ) -> Result<(Vec<OwnedAttribute>, Namespace), String>where Self: Sized,
impl Eq for ListLink
impl StructuralEq for ListLink
impl StructuralPartialEq for ListLink
Auto Trait Implementations§
impl RefUnwindSafe for ListLink
impl Send for ListLink
impl Sync for ListLink
impl Unpin for ListLink
impl UnwindSafe for ListLink
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