pub struct PresentationContextProposed {
pub id: u8,
pub abstract_syntax: String,
pub transfer_syntaxes: Vec<String>,
}
Expand description
Message component for a proposed presentation context.
Fields§
§id: u8
the presentation context identifier
abstract_syntax: String
the expected abstract syntax UID (commonly referrering to the expected SOP class)
transfer_syntaxes: Vec<String>
a list of transfer syntax UIDs to support in this interaction
Trait Implementations§
Source§impl Clone for PresentationContextProposed
impl Clone for PresentationContextProposed
Source§fn clone(&self) -> PresentationContextProposed
fn clone(&self) -> PresentationContextProposed
Returns a copy of the value. Read more
1.0.0 · 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 PresentationContextProposed
impl Debug for PresentationContextProposed
Source§impl Hash for PresentationContextProposed
impl Hash for PresentationContextProposed
Source§impl PartialOrd for PresentationContextProposed
impl PartialOrd for PresentationContextProposed
impl Eq for PresentationContextProposed
impl StructuralPartialEq for PresentationContextProposed
Auto Trait Implementations§
impl Freeze for PresentationContextProposed
impl RefUnwindSafe for PresentationContextProposed
impl Send for PresentationContextProposed
impl Sync for PresentationContextProposed
impl Unpin for PresentationContextProposed
impl UnwindSafe for PresentationContextProposed
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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