pub struct VmbusClientBuilder { /* private fields */ }
Expand description
A builder for creating a VmbusClient
.
Implementations§
Source§impl VmbusClientBuilder
impl VmbusClientBuilder
Sourcepub fn new(
event_client: impl SynicEventClient + 'static,
msg_source: impl VmbusMessageSource + 'static,
msg_client: impl PollPostMessage + 'static,
) -> Self
pub fn new( event_client: impl SynicEventClient + 'static, msg_source: impl VmbusMessageSource + 'static, msg_client: impl PollPostMessage + 'static, ) -> Self
Creates a new instance of the builder with the given synic input.
Sourcepub fn build(self, spawner: &impl Spawn) -> VmbusClient
pub fn build(self, spawner: &impl Spawn) -> VmbusClient
Creates a new instance with a receiver for incoming synic messages.
Auto Trait Implementations§
impl Freeze for VmbusClientBuilder
impl !RefUnwindSafe for VmbusClientBuilder
impl Send for VmbusClientBuilder
impl !Sync for VmbusClientBuilder
impl Unpin for VmbusClientBuilder
impl !UnwindSafe for VmbusClientBuilder
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