Struct ory_client::models::ui_container::UiContainer
source · pub struct UiContainer {
pub action: String,
pub messages: Option<Vec<UiText>>,
pub method: String,
pub nodes: Vec<UiNode>,
}Expand description
UiContainer : Container represents a HTML Form. The container can work with both HTTP Form and JSON requests
Fields§
§action: StringAction should be used as the form action URL <form action=\"{{ .Action }}\" method=\"post\">.
messages: Option<Vec<UiText>>§method: StringMethod is the form method (e.g. POST)
nodes: Vec<UiNode>Implementations§
source§impl UiContainer
impl UiContainer
Trait Implementations§
source§impl Clone for UiContainer
impl Clone for UiContainer
source§fn clone(&self) -> UiContainer
fn clone(&self) -> UiContainer
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for UiContainer
impl Debug for UiContainer
source§impl<'de> Deserialize<'de> for UiContainer
impl<'de> Deserialize<'de> for UiContainer
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<UiContainer> for UiContainer
impl PartialEq<UiContainer> for UiContainer
source§fn eq(&self, other: &UiContainer) -> bool
fn eq(&self, other: &UiContainer) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for UiContainer
impl Serialize for UiContainer
impl StructuralPartialEq for UiContainer
Auto Trait Implementations§
impl RefUnwindSafe for UiContainer
impl Send for UiContainer
impl Sync for UiContainer
impl Unpin for UiContainer
impl UnwindSafe for UiContainer
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more