pub struct TransferSyntaxFactory(pub fn() -> TransferSyntax);Expand description
Wrapper type for a provider of transfer syntax descriptors.
This is a piece of the plugin interface for
registering and collecting transfer syntaxes.
Implementers and consumers of transfer syntaxes
will usually not interact with it directly.
In order to register a new transfer syntax,
see the macro [submit_transfer_syntax!].
Tuple Fields§
§0: fn() -> TransferSyntaxTrait Implementations§
source§impl Clone for TransferSyntaxFactory
impl Clone for TransferSyntaxFactory
source§fn clone(&self) -> TransferSyntaxFactory
fn clone(&self) -> TransferSyntaxFactory
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 TransferSyntaxFactory
impl Debug for TransferSyntaxFactory
source§impl PartialEq<TransferSyntaxFactory> for TransferSyntaxFactory
impl PartialEq<TransferSyntaxFactory> for TransferSyntaxFactory
source§fn eq(&self, other: &TransferSyntaxFactory) -> bool
fn eq(&self, other: &TransferSyntaxFactory) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for TransferSyntaxFactory
impl StructuralPartialEq for TransferSyntaxFactory
Auto Trait Implementations§
impl RefUnwindSafe for TransferSyntaxFactory
impl Send for TransferSyntaxFactory
impl Sync for TransferSyntaxFactory
impl Unpin for TransferSyntaxFactory
impl UnwindSafe for TransferSyntaxFactory
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