pub struct TetherExtraction {
pub min_extract_len: usize,
pub endpoint: String,
pub port: u16,
pub server_public_key: String,
}
Expand description
Tether extraction pass.
Fields§
§min_extract_len: usize
Min length of a sequence of instructions that should be extracted. Its a bad idea for this to be 1 usually because its easy to synthesize
endpoint: String
Tether server endpoint
port: u16
Tether server port
server_public_key: String
Hex string of the servers public key. This is used for public key pinning. This needs to be length 64…
Trait Implementations§
Source§impl Clone for TetherExtraction
impl Clone for TetherExtraction
Source§fn clone(&self) -> TetherExtraction
fn clone(&self) -> TetherExtraction
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 moreSource§impl Debug for TetherExtraction
impl Debug for TetherExtraction
Source§impl<'de> Deserialize<'de> for TetherExtraction
impl<'de> Deserialize<'de> for TetherExtraction
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 TetherExtraction
impl RefUnwindSafe for TetherExtraction
impl Send for TetherExtraction
impl Sync for TetherExtraction
impl Unpin for TetherExtraction
impl UnwindSafe for TetherExtraction
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