pub enum DeliveryProtocol {
Progressive,
Streaming,
Unknown(UnknownEvent),
}Expand description
Represents the video delivery protocol type.
<xs:simpleType>
<xs:restriction base="xs:token">
<xs:enumeration value="streaming" />
<xs:enumeration value="progressive" />
</xs:restriction>
</xs:simpleType>Variants§
Progressive
Progressive download protocols (such as HTTP).
Streaming
Streaming protocols.
Unknown(UnknownEvent)
Trait Implementations§
Source§impl Clone for DeliveryProtocol
impl Clone for DeliveryProtocol
Source§fn clone(&self) -> DeliveryProtocol
fn clone(&self) -> DeliveryProtocol
Returns a duplicate 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 DeliveryProtocol
impl Debug for DeliveryProtocol
Source§impl Default for DeliveryProtocol
impl Default for DeliveryProtocol
Source§fn default() -> DeliveryProtocol
fn default() -> DeliveryProtocol
Returns the “default value” for a type. Read more
Source§impl Display for DeliveryProtocol
impl Display for DeliveryProtocol
Source§impl FromStr for DeliveryProtocol
impl FromStr for DeliveryProtocol
Source§impl PartialEq for DeliveryProtocol
impl PartialEq for DeliveryProtocol
impl StructuralPartialEq for DeliveryProtocol
Auto Trait Implementations§
impl Freeze for DeliveryProtocol
impl RefUnwindSafe for DeliveryProtocol
impl Send for DeliveryProtocol
impl Sync for DeliveryProtocol
impl Unpin for DeliveryProtocol
impl UnwindSafe for DeliveryProtocol
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