pub struct Binding<'a> {
pub name: Vec<NameComponent<'a>>,
pub binding_type: BindingType,
pub ior: Ior<'a>,
pub object_info: &'a [u8],
}Expand description
One binding in a DirectoryMessage or ServiceGatewayMessage.
TR 101 202 §4.7.4.1, Table 4.9.
Fields§
§name: Vec<NameComponent<'a>>Name components — DVB: exactly one component.
binding_type: BindingTypebindingType — 0x01 (nobject) or 0x02 (ncontext); see the module-level constants.
ior: Ior<'a>IOR of the bound object.
object_info: &'a [u8]Per-binding objectInfo data.
Trait Implementations§
impl<'a> Eq for Binding<'a>
Source§impl<'a> PartialEq for Binding<'a>
impl<'a> PartialEq for Binding<'a>
impl<'a> StructuralPartialEq for Binding<'a>
Auto Trait Implementations§
impl<'a> Freeze for Binding<'a>
impl<'a> RefUnwindSafe for Binding<'a>
impl<'a> Send for Binding<'a>
impl<'a> Sync for Binding<'a>
impl<'a> Unpin for Binding<'a>
impl<'a> UnsafeUnpin for Binding<'a>
impl<'a> UnwindSafe for Binding<'a>
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