pub struct ServiceMenu {
pub options: Options<'static>,
pub services: Services<'static>,
}
Expand description
Type for data within the <svcMenu>
section of an EPP greeting
Fields§
§options: Options<'static>
§services: Services<'static>
Trait Implementations§
Source§impl Debug for ServiceMenu
impl Debug for ServiceMenu
Source§impl<'xml> FromXml<'xml> for ServiceMenu
impl<'xml> FromXml<'xml> for ServiceMenu
Source§fn deserialize<'cx>(
into: &mut Self::Accumulator,
field: &'static str,
deserializer: &mut Deserializer<'cx, 'xml>,
) -> Result<(), Error>
fn deserialize<'cx>( into: &mut Self::Accumulator, field: &'static str, deserializer: &mut Deserializer<'cx, 'xml>, ) -> Result<(), Error>
Deserializes the <svcMenu>
data to the ServiceMenu
type
const KIND: Kind = FlattenedServiceMenu::KIND
type Accumulator = Option<ServiceMenu>
fn matches(id: Id<'_>, field: Option<Id<'_>>) -> bool
Source§impl PartialEq for ServiceMenu
impl PartialEq for ServiceMenu
impl Eq for ServiceMenu
impl StructuralPartialEq for ServiceMenu
Auto Trait Implementations§
impl Freeze for ServiceMenu
impl RefUnwindSafe for ServiceMenu
impl Send for ServiceMenu
impl Sync for ServiceMenu
impl Unpin for ServiceMenu
impl UnwindSafe for ServiceMenu
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