pub struct GetAtHomeServer<'a> {
pub chapter_id: &'a Uuid,
pub force_port443: bool,
}Expand description
Get MangaDex@Home server URL
Call to `GET /at-home/server/{chapterId}
Fields§
§chapter_id: &'a UuidChapter ID
force_port443: boolForce selecting from MangaDex@Home servers that use the standard HTTPS port 443.
While the conventional port for HTTPS traffic is 443 and servers are encouraged to use it, it is not a hard requirement as it technically isn’t anything special.
However, some misbehaving school/office network will at time block traffic to non-standard ports, and setting this flag to true will ensure selection of a server that uses these.
Implementations§
Trait Implementations§
Source§impl<'a> Clone for GetAtHomeServer<'a>
impl<'a> Clone for GetAtHomeServer<'a>
Source§fn clone(&self) -> GetAtHomeServer<'a>
fn clone(&self) -> GetAtHomeServer<'a>
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<'a> Debug for GetAtHomeServer<'a>
impl<'a> Debug for GetAtHomeServer<'a>
Auto Trait Implementations§
impl<'a> Freeze for GetAtHomeServer<'a>
impl<'a> RefUnwindSafe for GetAtHomeServer<'a>
impl<'a> Send for GetAtHomeServer<'a>
impl<'a> Sync for GetAtHomeServer<'a>
impl<'a> Unpin for GetAtHomeServer<'a>
impl<'a> UnsafeUnpin for GetAtHomeServer<'a>
impl<'a> UnwindSafe for GetAtHomeServer<'a>
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