pub enum FixedStreamingElement {
Header {
sender: MessageSender,
message_id: Identifier,
created_date_time: String,
version: ERNVersion,
},
Release(Release),
Resource(Resource),
EndOfStream,
}Expand description
Fixed streaming element for demonstration
Variants§
Trait Implementations§
Source§impl Clone for FixedStreamingElement
impl Clone for FixedStreamingElement
Source§fn clone(&self) -> FixedStreamingElement
fn clone(&self) -> FixedStreamingElement
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 moreAuto Trait Implementations§
impl Freeze for FixedStreamingElement
impl RefUnwindSafe for FixedStreamingElement
impl Send for FixedStreamingElement
impl Sync for FixedStreamingElement
impl Unpin for FixedStreamingElement
impl UnwindSafe for FixedStreamingElement
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