pub struct RestrictedAreaProxy {
pub base_url: String,
pub area: Option<RestrictedArea>,
pub kind: RestrictedAreaProxyKind,
/* private fields */
}Fields§
§base_url: String§area: Option<RestrictedArea>§kind: RestrictedAreaProxyKindImplementations§
Source§impl RestrictedAreaProxy
impl RestrictedAreaProxy
pub fn playurl( base_url: impl Into<String>, area: Option<RestrictedArea>, ) -> Self
pub fn bilibili_api( base_url: impl Into<String>, area: Option<RestrictedArea>, ) -> Self
Trait Implementations§
Source§impl Clone for RestrictedAreaProxy
impl Clone for RestrictedAreaProxy
Source§fn clone(&self) -> RestrictedAreaProxy
fn clone(&self) -> RestrictedAreaProxy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RestrictedAreaProxy
impl Debug for RestrictedAreaProxy
impl Eq for RestrictedAreaProxy
Source§impl PartialEq for RestrictedAreaProxy
impl PartialEq for RestrictedAreaProxy
Auto Trait Implementations§
impl Freeze for RestrictedAreaProxy
impl RefUnwindSafe for RestrictedAreaProxy
impl Send for RestrictedAreaProxy
impl Sync for RestrictedAreaProxy
impl Unpin for RestrictedAreaProxy
impl UnsafeUnpin for RestrictedAreaProxy
impl UnwindSafe for RestrictedAreaProxy
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