make compiler happy
This commit is contained in:
@@ -13,8 +13,32 @@ pub struct WebRTCStream {
|
||||
// mock struct
|
||||
}
|
||||
|
||||
impl Clone for WebRTCStream {
|
||||
fn clone(&self) -> Self {
|
||||
WebRTCStream {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl WebRTCStream {
|
||||
|
||||
pub async fn new(
|
||||
_: &str,
|
||||
_: u64,
|
||||
) -> ResultType<Self> {
|
||||
Ok(Self {})
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub async fn get_local_endpoint(&self) -> ResultType<String> {
|
||||
Ok(String::new())
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub async fn set_remote_endpoint(&self, _: &str) -> ResultType<()> {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn set_raw(&mut self) {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user