pub struct Bittorrent {
pub announce_list: Vec<Vec<String>>,
pub comment: String,
pub creation_date: u32,
pub info: Info,
pub mode: String,
}
Fields§
§announce_list: Vec<Vec<String>>
§comment: String
§creation_date: u32
§info: Info
§mode: String
Trait Implementations§
Source§impl Debug for Bittorrent
impl Debug for Bittorrent
Source§impl<'de> Deserialize<'de> for Bittorrent
impl<'de> Deserialize<'de> for Bittorrent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Bittorrent
impl RefUnwindSafe for Bittorrent
impl Send for Bittorrent
impl Sync for Bittorrent
impl Unpin for Bittorrent
impl UnwindSafe for Bittorrent
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