pub struct ShareView {
pub backend: Option<String>,
pub backend_mode: Option<String>,
pub created_at: Option<i32>,
pub token: Option<String>,
pub url: Option<String>,
}Fields§
§backend: Option<String>Backend is the local endpoint the share proxies to.
backend_mode: Option<String>BackendMode is how the tunnel serves the backend, e.g. proxy or web.
created_at: Option<i32>CreatedAt is when the share was opened, unix seconds.
token: Option<String>Token is the share’s own identifier, the leaf of its public URL.
url: Option<String>URL is the share’s public address, rendered from the deployment’s URL template.
Implementations§
Trait Implementations§
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
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