pub struct BinarySecurityToken<'a> {
pub binary_security_token: &'a str,
pub wssu_id: WSSUId,
}Expand description
Represents the binary security token header
the easiest way to build it is via BinarySecurityToken::new which takes care of WSSUIds for you
Fields§
§binary_security_token: &'a strthe actual base64 cert
wssu_id: WSSUIdthe wssu id used for this element
Implementations§
Trait Implementations§
Source§impl<'a> Clone for BinarySecurityToken<'a>
impl<'a> Clone for BinarySecurityToken<'a>
Source§fn clone(&self) -> BinarySecurityToken<'a>
fn clone(&self) -> BinarySecurityToken<'a>
Returns a duplicate 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 moreAuto Trait Implementations§
impl<'a> Freeze for BinarySecurityToken<'a>
impl<'a> RefUnwindSafe for BinarySecurityToken<'a>
impl<'a> Send for BinarySecurityToken<'a>
impl<'a> Sync for BinarySecurityToken<'a>
impl<'a> Unpin for BinarySecurityToken<'a>
impl<'a> UnwindSafe for BinarySecurityToken<'a>
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