pub struct FilePublish;Expand description
The publish policy for FilePublisher.
§Examples
use ruststream_sea_file::FilePublish;
let policy = FilePublish::default();Trait Implementations§
Source§impl Clone for FilePublish
impl Clone for FilePublish
Source§fn clone(&self) -> FilePublish
fn clone(&self) -> FilePublish
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FilePublish
Source§impl Debug for FilePublish
impl Debug for FilePublish
Source§impl Default for FilePublish
impl Default for FilePublish
Source§fn default() -> FilePublish
fn default() -> FilePublish
Returns the “default value” for a type. Read more
Source§impl PublishPolicy<ConnectedFileBroker> for FilePublish
impl PublishPolicy<ConnectedFileBroker> for FilePublish
Source§type Live = FilePublisher
type Live = FilePublisher
The live form this policy pairs into: a
Publisher for a leaf policy, or the live
wiring form for a combinator stack (a typed publisher over a policy pairs into the same
typed publisher over the live leaf).Auto Trait Implementations§
impl Freeze for FilePublish
impl RefUnwindSafe for FilePublish
impl Send for FilePublish
impl Sync for FilePublish
impl Unpin for FilePublish
impl UnsafeUnpin for FilePublish
impl UnwindSafe for FilePublish
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