derive Defgault for StreamTarget
This commit is contained in:
parent
60ed1876b2
commit
c7bac73bde
|
@ -30,21 +30,12 @@ const BLOCK_BUFFER_SIZE: usize = 30;
|
||||||
const SUBSAMPLE_RATE: usize = 1;
|
const SUBSAMPLE_RATE: usize = 1;
|
||||||
|
|
||||||
/// Represents the destination for the UDP stream to send data to.
|
/// Represents the destination for the UDP stream to send data to.
|
||||||
#[derive(Copy, Clone, Debug, MiniconfAtomic, Deserialize)]
|
#[derive(Copy, Clone, Debug, MiniconfAtomic, Deserialize, Default)]
|
||||||
pub struct StreamTarget {
|
pub struct StreamTarget {
|
||||||
pub ip: [u8; 4],
|
pub ip: [u8; 4],
|
||||||
pub port: u16,
|
pub port: u16,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for StreamTarget {
|
|
||||||
fn default() -> Self {
|
|
||||||
Self {
|
|
||||||
ip: [0; 4],
|
|
||||||
port: 0,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<StreamTarget> for SocketAddr {
|
impl From<StreamTarget> for SocketAddr {
|
||||||
fn from(target: StreamTarget) -> SocketAddr {
|
fn from(target: StreamTarget) -> SocketAddr {
|
||||||
SocketAddr::new(
|
SocketAddr::new(
|
||||||
|
|
Loading…
Reference in New Issue