pub trait RayUrlInput {
// Required method
fn try_into_ray_url(self) -> Result<RayUrl, RayError>;
}Expand description
Accepted URL inputs for Ray link methods.
Supported inputs include RayUrl, Url, &str, and String.
Required Methods§
Sourcefn try_into_ray_url(self) -> Result<RayUrl, RayError>
fn try_into_ray_url(self) -> Result<RayUrl, RayError>
Convert the input into a validated RayUrl.