[][src]Trait mailslurp::apis::FormControllerApi

pub trait FormControllerApi {
    pub fn submit_form(
        &self,
        _email_address: Option<&str>,
        _redirect_to: Option<&str>,
        _spam_check: Option<&str>,
        _subject: Option<&str>,
        _success_message: Option<&str>,
        _to: Option<&str>,
        other_parameters: Option<&str>
    ) -> Box<dyn Future<Item = String, Error = Error<Value>>>; }

Required methods

pub fn submit_form(
    &self,
    _email_address: Option<&str>,
    _redirect_to: Option<&str>,
    _spam_check: Option<&str>,
    _subject: Option<&str>,
    _success_message: Option<&str>,
    _to: Option<&str>,
    other_parameters: Option<&str>
) -> Box<dyn Future<Item = String, Error = Error<Value>>>
[src]

Loading content...

Implementors

impl<C: Connect> FormControllerApi for FormControllerApiClient<C>[src]

Loading content...