pub struct AcceptEulaResponse {
pub message: String,
pub user_id: String,
pub workspace_id: Option<String>,
}Expand description
Response after accepting EULA
JSON schema
{
"description": "Response after accepting EULA",
"type": "object",
"required": [
"message",
"user_id"
],
"properties": {
"message": {
"type": "string"
},
"user_id": {
"type": "string"
},
"workspace_id": {
"description": "Personal Workspace org id auto-created on self-signup. Absent for existing users\nbeing linked to Kratos credentials.",
"type": [
"string",
"null"
]
}
}
}Fields§
§message: String§user_id: String§workspace_id: Option<String>Personal Workspace org id auto-created on self-signup. Absent for existing users being linked to Kratos credentials.
Trait Implementations§
Source§impl Clone for AcceptEulaResponse
impl Clone for AcceptEulaResponse
Source§fn clone(&self) -> AcceptEulaResponse
fn clone(&self) -> AcceptEulaResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AcceptEulaResponse
impl Debug for AcceptEulaResponse
Source§impl<'de> Deserialize<'de> for AcceptEulaResponse
impl<'de> Deserialize<'de> for AcceptEulaResponse
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
Auto Trait Implementations§
impl Freeze for AcceptEulaResponse
impl RefUnwindSafe for AcceptEulaResponse
impl Send for AcceptEulaResponse
impl Sync for AcceptEulaResponse
impl Unpin for AcceptEulaResponse
impl UnsafeUnpin for AcceptEulaResponse
impl UnwindSafe for AcceptEulaResponse
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