[−][src]Struct azure_functions::bindings::SignalRMessage
Represents the SignalR message output binding.
The following binding attributes are supported:
| Name | Description |
|---|---|
name | The name of the parameter being bound. |
hub_name | The name of the SignalR hub that will receive the message. |
connection | The name of the app setting that contains the SignalR Service connection string. Defaults to AzureSignalRConnectionString. |
Examples
This example implements an HTTP-triggered Azure Function that returns a SignalRMessage binding:
use azure_functions::{ bindings::{HttpRequest, SignalRMessage}, func, }; use serde_json::{to_value, Value}; #[func] #[binding(name = "req", auth_level = "anonymous", methods = "post")] #[binding(name = "$return", hub_name = "chat", connection = "myconnection")] pub fn send_message(req: HttpRequest) -> SignalRMessage { SignalRMessage { user_id: req.query_params().get("user").map(|v| v.to_owned()), group_name: req.query_params().get("group").map(|v| v.to_owned()), target: "newMessage".to_owned(), arguments: vec![req.query_params().get("message").map_or(Value::Null, |v| to_value(v).unwrap())], } }
Fields
user_id: Option<String>The optional user id to send the message to.
group_name: Option<String>The optional group name to send the message to.
target: StringThe target method name to invoke on each SignalR client.
arguments: Vec<Value>The arguments to pass to the target method.
Trait Implementations
impl Clone for SignalRMessage[src]
fn clone(&self) -> SignalRMessage[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for SignalRMessage[src]
impl Serialize for SignalRMessage[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl<'de> Deserialize<'de> for SignalRMessage[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for SignalRMessage
impl Sync for SignalRMessage
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> DeserializeOwned for T where
T: Deserialize<'de>, [src]
T: Deserialize<'de>,