pub struct RouteTunnel<'a> {
pub zone_tag: &'a str,
pub tunnel_id: Uuid,
pub params: Params<'a>,
}Expand description
Route for a Named Argo Tunnel This creates a new route for the identified Tunnel. More than 1 route may co-exist for the same Tunnel. Note that this modifies only metadata on Cloudflare side to route traffic to the Tunnel, but it is still up to the user to run the Tunnel to receive that traffic.
Fields§
§zone_tag: &'a str§tunnel_id: Uuid§params: Params<'a>Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for RouteTunnel<'a>
impl<'a> RefUnwindSafe for RouteTunnel<'a>
impl<'a> Send for RouteTunnel<'a>
impl<'a> Sync for RouteTunnel<'a>
impl<'a> Unpin for RouteTunnel<'a>
impl<'a> UnwindSafe for RouteTunnel<'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