pub trait LineModuleAttachApi: Send + Sync {
// Required method
fn attach_module(
&self,
grant_type: &str,
code: &str,
redirect_uri: &str,
code_verifier: Option<&str>,
client_id: Option<&str>,
client_secret: Option<&str>,
region: Option<&str>,
basic_search_id: Option<&str>,
scope: Option<&str>,
brand_type: Option<&str>,
) -> impl Future<Output = Result<AttachModuleResponse, Error>> + Send;
}Required Methods§
fn attach_module( &self, grant_type: &str, code: &str, redirect_uri: &str, code_verifier: Option<&str>, client_id: Option<&str>, client_secret: Option<&str>, region: Option<&str>, basic_search_id: Option<&str>, scope: Option<&str>, brand_type: Option<&str>, ) -> impl Future<Output = Result<AttachModuleResponse, Error>> + Send
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.