pub struct NetworkEntry {
pub identifier: String,
pub operator: String,
pub authentication: String,
pub fee: bool,
pub web: String,
pub stream_url: String,
pub registration_url: String,
pub misc: String,
}Expand description
A network entry from the sourcetable.
Fields§
§identifier: StringNetwork identifier
operator: StringNetwork operator
authentication: StringAuthentication type
fee: boolFee required
web: StringWeb address
stream_url: StringStream URL
registration_url: StringRegistration URL
misc: StringMiscellaneous info
Trait Implementations§
Source§impl Clone for NetworkEntry
impl Clone for NetworkEntry
Source§fn clone(&self) -> NetworkEntry
fn clone(&self) -> NetworkEntry
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 NetworkEntry
impl Debug for NetworkEntry
Source§impl Default for NetworkEntry
impl Default for NetworkEntry
Source§fn default() -> NetworkEntry
fn default() -> NetworkEntry
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for NetworkEntry
impl RefUnwindSafe for NetworkEntry
impl Send for NetworkEntry
impl Sync for NetworkEntry
impl Unpin for NetworkEntry
impl UnwindSafe for NetworkEntry
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