pub struct FileTransfer<'a, N: NetworkProvider + 'static> { /* private fields */ }Expand description
File transfer handle — the public API for file transfers.
This is a borrowed reference to a Node that provides file transfer
operations. Obtained via Node::file_transfer().
Generic over N: NetworkProvider to match the Node it wraps.
Implementations§
Source§impl<'a, N: NetworkProvider + 'static> FileTransfer<'a, N>
impl<'a, N: NetworkProvider + 'static> FileTransfer<'a, N>
Sourcepub fn subscribe(&self) -> Receiver<FileTransferEvent>
pub fn subscribe(&self) -> Receiver<FileTransferEvent>
Subscribe to file transfer events.
Returns a broadcast receiver that yields FileTransferEvents.
Multiple subscribers are supported.
Sourcepub fn set_max_transfer_size(&self, bytes: u64)
pub fn set_max_transfer_size(&self, bytes: u64)
Set the maximum allowed transfer size in bytes.
Transfers exceeding this size will be rejected. Default is 1 GB.
Sourcepub fn max_transfer_size(&self) -> u64
pub fn max_transfer_size(&self) -> u64
Get the current maximum transfer size in bytes.
Sourcepub async fn offer_channel(
&self,
node: Arc<Node<N>>,
) -> UnboundedReceiver<(FileOffer, OfferResponder)>
pub async fn offer_channel( &self, node: Arc<Node<N>>, ) -> UnboundedReceiver<(FileOffer, OfferResponder)>
Get a channel for receiving incoming file offers.
Each offer comes with an OfferResponder that must be used to
accept or reject the transfer. Calling this starts the background
receiver listener (lazy start, idempotent).
Only one offer channel can be active at a time. Calling this again replaces the previous channel (the old receiver will stop getting offers).
Important: The returned receiver must be polled. The node reference
used here must remain valid — store the Node in an Arc and pass it
to spawned tasks as needed.
Sourcepub async fn auto_accept(&self, node: Arc<Node<N>>, output_dir: &str)
pub async fn auto_accept(&self, node: Arc<Node<N>>, output_dir: &str)
Convenience: auto-accept all incoming offers, saving files to
output_dir.
This starts the receiver listener (lazy start) and spawns a task
that automatically accepts every offer with the save path set to
{output_dir}/{file_name}.
Sourcepub async fn auto_reject(&self, node: Arc<Node<N>>)
pub async fn auto_reject(&self, node: Arc<Node<N>>)
Convenience: auto-reject all incoming offers.
This starts the receiver listener (lazy start) and spawns a task that automatically rejects every offer.
Sourcepub async fn send_file(
&self,
peer_id: &str,
local_path: &str,
remote_path: &str,
) -> Result<TransferResult, TransferError>
pub async fn send_file( &self, peer_id: &str, local_path: &str, remote_path: &str, ) -> Result<TransferResult, TransferError>
Send a file to a peer.
Hashes the local file, sends an OFFER via the "ft" namespace,
waits for ACCEPT, then streams the file over TCP.
§Errors
Returns TransferError on I/O failure, rejection, timeout, or
integrity check failure.
Sourcepub async fn pull_file(
&self,
peer_id: &str,
remote_path: &str,
local_path: &str,
) -> Result<TransferResult, TransferError>
pub async fn pull_file( &self, peer_id: &str, remote_path: &str, local_path: &str, ) -> Result<TransferResult, TransferError>
Pull a file from a remote peer.
Sends a PULL_REQUEST, waits for the peer’s OFFER, accepts it, then receives the file over TCP.
§Errors
Returns TransferError on I/O failure, rejection, timeout, or
integrity check failure.
Auto Trait Implementations§
impl<'a, N> !RefUnwindSafe for FileTransfer<'a, N>
impl<'a, N> !UnwindSafe for FileTransfer<'a, N>
impl<'a, N> Freeze for FileTransfer<'a, N>
impl<'a, N> Send for FileTransfer<'a, N>
impl<'a, N> Sync for FileTransfer<'a, N>
impl<'a, N> Unpin for FileTransfer<'a, N>
impl<'a, N> UnsafeUnpin for FileTransfer<'a, N>
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
Source§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the foreground set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red() and
green(), which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg():
use yansi::{Paint, Color};
painted.fg(Color::White);Set foreground color to white using white().
use yansi::Paint;
painted.white();Source§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
Source§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
Source§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
Source§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
Source§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
Source§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
Source§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
Source§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
Source§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the background set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red() and
on_green(), which have the same functionality but
are pithier.
§Example
Set background color to red using fg():
use yansi::{Paint, Color};
painted.bg(Color::Red);Set background color to red using on_red().
use yansi::Paint;
painted.on_red();Source§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
Source§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
Source§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
Source§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
Source§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
Source§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
Source§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
Source§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
Source§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
Source§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
Source§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling Attribute value.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold() and
underline(), which have the same functionality
but are pithier.
§Example
Make text bold using attr():
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);Make text bold using using bold().
use yansi::Paint;
painted.bold();Source§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
Source§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi Quirk value.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask() and
wrap(), which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk():
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);Enable wrapping using wrap().
use yansi::Paint;
painted.wrap();Source§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting() due to conflicts with Vec::clear().
The clear() method will be removed in a future release.
fn clear(&self) -> Painted<&T>
renamed to resetting() due to conflicts with Vec::clear().
The clear() method will be removed in a future release.
Source§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the Condition value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted only when both stdout and stderr are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);