[][src]Trait fastly::convert::ToMethod

pub trait ToMethod: Sealed { }

Types that can be converted to a Method.

Some methods in this crate accept impl ToMethod arguments. Any of the types below can be passed as those arguments and the conversion will be performed automatically, though depending on the type, the conversion can panic.

Source typeCan panic?Non-panicking conversion
Method or &MethodNoN/A
&str, String, or &StringYesMethod::try_from()
&[u8], Vec<u8>, or &Vec<u8>YesMethod::try_from()

Panics

This conversion trait differs from std::convert::Into, which is guaranteed to succeed for any argument, and std::convert::TryInto which returns an explicit error when a conversion fails.

For types marked above as Can panic?, the conversion may panic at runtime if the data is invalid. Automatic conversions for these types are provided for convenience for data you trust, like a string literal in your code, or for applications where a default 500 Internal Server Error response for a conversion failure is acceptable.

In most applications you should explicitly convert data from untrusted sources, such as the client request, to one of the types that cannot fail at runtime using a method like those listed under Non-panicking conversion. This allows your application to handle conversion errors without panicking, such as by falling back on a default value, removing invalid characters, or returning a branded error page.

Implementations on Foreign Types

impl ToMethod for &str[src]

impl ToMethod for String[src]

impl ToMethod for &String[src]

impl ToMethod for &[u8][src]

impl ToMethod for Vec<u8>[src]

impl ToMethod for &Vec<u8>[src]

Loading content...

Implementors

impl ToMethod for Method[src]

impl<'a> ToMethod for &'a Method[src]

Loading content...