pub struct Post {
pub from: Address,
pub bytes: Vec<u8>,
pub to: Vec<Address>,
pub action: PostAction,
}
Expand description
Post to be considered by the list’s
PostFilter
stack.
Fields§
§from: Address
From
address of post.
bytes: Vec<u8>
Raw bytes of post.
to: Vec<Address>
To
addresses of post.
action: PostAction
Final action set by each filter in a list’s
PostFilter
stack.