pub struct IceCandidateError {
pub address: String,
pub port: i32,
pub url: String,
pub error_code: i32,
pub error_text: String,
}Fields§
§address: String§port: i32§url: String§error_code: i32§error_text: StringTrait Implementations§
Source§impl Clone for IceCandidateError
impl Clone for IceCandidateError
Source§fn clone(&self) -> IceCandidateError
fn clone(&self) -> IceCandidateError
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 moreAuto Trait Implementations§
impl Freeze for IceCandidateError
impl RefUnwindSafe for IceCandidateError
impl Send for IceCandidateError
impl Sync for IceCandidateError
impl Unpin for IceCandidateError
impl UnsafeUnpin for IceCandidateError
impl UnwindSafe for IceCandidateError
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