pub struct StreamerUri { /* private fields */ }
Expand description
URI of Streaming Server. If this is a cluster, there can be multiple nodes.
Examples:
โ
stdio://
redis://localhost
kafka://node-a:1234,node-b:1234
file://./path/to/stream
Implementationsยง
Sourceยงimpl StreamerUri
impl StreamerUri
Trait Implementationsยง
Sourceยงimpl Clone for StreamerUri
impl Clone for StreamerUri
Sourceยงfn clone(&self) -> StreamerUri
fn clone(&self) -> StreamerUri
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 StreamerUri
impl Debug for StreamerUri
Sourceยงimpl Display for StreamerUri
impl Display for StreamerUri
Sourceยงimpl From<Url> for StreamerUri
impl From<Url> for StreamerUri
Sourceยงfn from(value: Url) -> StreamerUri
fn from(value: Url) -> StreamerUri
Converts to this type from the input type.
Sourceยงimpl FromIterator<Url> for StreamerUri
impl FromIterator<Url> for StreamerUri
Sourceยงfn from_iter<T>(iter: T) -> StreamerUriwhere
T: IntoIterator<Item = Url>,
fn from_iter<T>(iter: T) -> StreamerUriwhere
T: IntoIterator<Item = Url>,
Creates a value from an iterator. Read more
Sourceยงimpl FromStr for StreamerUri
impl FromStr for StreamerUri
Sourceยงtype Err = StreamUrlErr
type Err = StreamUrlErr
The associated error which can be returned from parsing.
Sourceยงfn from_str(urls: &str) -> Result<StreamerUri, <StreamerUri as FromStr>::Err>
fn from_str(urls: &str) -> Result<StreamerUri, <StreamerUri as FromStr>::Err>
Parses a string
s
to return a value of this type. Read moreSourceยงimpl Hash for StreamerUri
impl Hash for StreamerUri
Sourceยงimpl PartialEq for StreamerUri
impl PartialEq for StreamerUri
impl Eq for StreamerUri
impl StructuralPartialEq for StreamerUri
Auto Trait Implementationsยง
impl Freeze for StreamerUri
impl RefUnwindSafe for StreamerUri
impl Send for StreamerUri
impl Sync for StreamerUri
impl Unpin for StreamerUri
impl UnwindSafe for StreamerUri
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