Skip to main content

PbmLineOfServiceInfoTrait

Trait PbmLineOfServiceInfoTrait 

Source
pub trait PbmLineOfServiceInfoTrait: DataObjectTrait {
    // Required methods
    fn get_pbm_line_of_service_info(&self) -> &PbmLineOfServiceInfo;
    fn get_pbm_line_of_service_info_mut(&mut self) -> &mut PbmLineOfServiceInfo;
}
Expand description

Describes Line of Service of a capability provider.

This structure may be used only with operations rendered under /pbm.

§How to access

  • PbmProfileProfileManager::pbm_fetch_capability_schema().line_of_service?

Required Methods§

Source

fn get_pbm_line_of_service_info(&self) -> &PbmLineOfServiceInfo

Get a reference to the PbmLineOfServiceInfo parent struct

Source

fn get_pbm_line_of_service_info_mut(&mut self) -> &mut PbmLineOfServiceInfo

Get a mutable reference to the PbmLineOfServiceInfo parent struct

Trait Implementations§

Source§

impl<From: VimObjectTrait + ?Sized + 'static> CastFrom<From> for dyn PbmLineOfServiceInfoTrait

Source§

fn from_ref<'a>(from: &'a From) -> Option<&'a Self>

Casts a reference to a trait object. If the cast fails, std::option::Option::None is returned.
Source§

fn from_box(from: Box<From>) -> Result<Box<Self>, Box<dyn Any + 'static>>

Casts a boxed trait object to another trait object. If the cast fails, the original boxed trait object is returned in std::result::Result::Err.
Source§

impl Deref for dyn PbmLineOfServiceInfoTrait

Source§

type Target = PbmLineOfServiceInfo

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl DerefMut for dyn PbmLineOfServiceInfoTrait

Source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
Source§

impl Deserialize for Box<dyn PbmLineOfServiceInfoTrait>

Source§

fn begin(out: &mut Option<Self>) -> &mut dyn Visitor

The only correct implementation of this method is: Read more

Implementors§