Struct seec::circuit::base_circuit::BaseCircuit
source · pub struct BaseCircuit<Plain = bool, Gate = BooleanGate, Idx = u32, Wire = ()> { /* private fields */ }
Implementations§
source§impl<P, G: Gate<P>, Idx: GateIdx, W: Wire> BaseCircuit<P, G, Idx, W>
impl<P, G: Gate<P>, Idx: GateIdx, W: Wire> BaseCircuit<P, G, Idx, W>
pub fn new() -> Self
pub fn new_main() -> Self
pub fn with_capacity(gates: usize, wires: usize) -> Self
pub fn add_gate(&mut self, gate: G) -> GateId<Idx>
pub fn add_sc_input_gate(&mut self, gate: G) -> GateId<Idx>
pub fn get_gate(&self, id: impl Into<GateId<Idx>>) -> G
pub fn parent_gates( &self, id: impl Into<GateId<Idx>> ) -> impl Iterator<Item = GateId<Idx>> + '_
pub fn gate_count(&self) -> usize
pub fn wire_count(&self) -> usize
pub fn save_dot(&self, path: impl AsRef<Path>) -> Result<(), CircuitError>
pub fn as_graph(&self) -> &Graph<G, W, Directed, Idx>
pub fn interactive_iter(&self) -> impl Iterator<Item = (G, GateId<Idx>)> + '_
pub fn iter(&self) -> impl Iterator<Item = (G, GateId<Idx>)> + '_
source§impl<P, G: Gate<P>, Idx: GateIdx> BaseCircuit<P, G, Idx, ()>
impl<P, G: Gate<P>, Idx: GateIdx> BaseCircuit<P, G, Idx, ()>
pub fn add_wire(&mut self, from: GateId<Idx>, to: GateId<Idx>)
pub fn add_wired_gate(&mut self, gate: G, from: &[GateId<Idx>]) -> GateId<Idx>
sourcepub fn add_sub_circuit(
&mut self,
circuit: &Self,
inputs: impl IntoIterator<Item = GateId<Idx>>
) -> Vec<GateId<Idx>>
pub fn add_sub_circuit( &mut self, circuit: &Self, inputs: impl IntoIterator<Item = GateId<Idx>> ) -> Vec<GateId<Idx>>
Adds another SubCircuit into self
. The gates and wires of circuit
are added to
self
and the inputs
gates in self
are connected to the BaseCircuit::sub_circuit_input_gates
of the provided circuit
.
Examples found in repository?
crates/seec/examples/aes_cbc.rs (line 458)
426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
fn aes128(
key: &[Secret<BooleanGmw, usize>],
chunk: &[Secret<BooleanGmw, usize>],
use_sc: bool,
) -> Vec<Secret<BooleanGmw, usize>> {
static AES_CIRC: Lazy<SharedCircuit<bool, BooleanGate, usize>> = Lazy::new(|| {
let aes_circ_str = include_str!("../test_resources/bristol-circuits/aes_128.bristol");
BaseCircuit::from_bristol(
seec::bristol::circuit(aes_circ_str).expect("parsing AES circuit failed"),
Load::SubCircuit,
)
.expect("converting AES circuit failed")
.into_shared()
});
let inp = [chunk, key].concat();
if use_sc {
let (output, circ_id) = CircuitBuilder::with_global(|builder| {
let circ_id = builder.push_circuit(AES_CIRC.clone());
(builder.connect_sub_circuit(&inp, circ_id), circ_id)
});
output.connect_to_main(circ_id)
} else {
CircuitBuilder::with_global(|builder| {
let inp = inp.into_iter().map(|sh| {
assert_eq!(0, sh.circuit_id());
sh.gate_id()
});
let out = builder
.get_main_circuit()
.lock()
.add_sub_circuit(&AES_CIRC.lock(), inp);
out.into_iter()
.map(|gate_id| Secret::from_parts(0, gate_id))
.collect()
})
}
}
source§impl<P, G, Idx, W> BaseCircuit<P, G, Idx, W>
impl<P, G, Idx, W> BaseCircuit<P, G, Idx, W>
pub fn is_simd(&self) -> bool
pub fn simd_size(&self) -> Option<NonZeroUsize>
pub fn interactive_count(&self) -> usize
pub fn input_count(&self) -> usize
pub fn input_gates(&self) -> &[GateId<Idx>]
pub fn sub_circuit_input_gates(&self) -> &[GateId<Idx>]
sourcepub fn sub_circuit_input_count(&self) -> usize
pub fn sub_circuit_input_count(&self) -> usize
Examples found in repository?
crates/seec/examples/bristol.rs (line 120)
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
fn compile(compile_args: CompileArgs) -> Result<()> {
let load = match compile_args.simd {
Some(_) => Load::SubCircuit,
None => Load::Circuit,
};
let mut bc: BaseCircuit = BaseCircuit::load_bristol(&compile_args.circuit, load)
.expect("failed to load bristol circuit");
let mut circ = match compile_args.simd {
Some(size) => {
bc.set_simd_size(size);
let circ_input_size = bc.sub_circuit_input_count();
let inputs = inputs::<u32>(circ_input_size);
let bc = bc.into_shared();
let (output, circ_id) = CircuitBuilder::with_global(|builder| {
builder.get_main_circuit().lock().set_simd_size(size);
let circ_id = builder.push_circuit(bc);
let output = builder.connect_sub_circuit(&inputs, circ_id);
(output, circ_id)
});
let main = output.connect_to_main(circ_id);
main.iter().for_each(|s| {
s.output();
});
let circ = CircuitBuilder::global_into_circuit();
ExecutableCircuit::DynLayers(circ)
}
None => ExecutableCircuit::DynLayers(bc.into()),
};
if !compile_args.dyn_layers {
circ = circ.precompute_layers();
}
let out =
BufWriter::new(File::create(&compile_args.output).context("failed to create output file")?);
bincode::serialize_into(out, &circ).context("failed to serialize circuit")?;
Ok(())
}
pub fn output_count(&self) -> usize
pub fn output_gates(&self) -> &[GateId<Idx>]
pub fn sub_circuit_output_gates(&self) -> &[GateId<Idx>]
Examples found in repository?
More examples
crates/seec/examples/bristol.rs (line 122)
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
fn compile(compile_args: CompileArgs) -> Result<()> {
let load = match compile_args.simd {
Some(_) => Load::SubCircuit,
None => Load::Circuit,
};
let mut bc: BaseCircuit = BaseCircuit::load_bristol(&compile_args.circuit, load)
.expect("failed to load bristol circuit");
let mut circ = match compile_args.simd {
Some(size) => {
bc.set_simd_size(size);
let circ_input_size = bc.sub_circuit_input_count();
let inputs = inputs::<u32>(circ_input_size);
let bc = bc.into_shared();
let (output, circ_id) = CircuitBuilder::with_global(|builder| {
builder.get_main_circuit().lock().set_simd_size(size);
let circ_id = builder.push_circuit(bc);
let output = builder.connect_sub_circuit(&inputs, circ_id);
(output, circ_id)
});
let main = output.connect_to_main(circ_id);
main.iter().for_each(|s| {
s.output();
});
let circ = CircuitBuilder::global_into_circuit();
ExecutableCircuit::DynLayers(circ)
}
None => ExecutableCircuit::DynLayers(bc.into()),
};
if !compile_args.dyn_layers {
circ = circ.precompute_layers();
}
let out =
BufWriter::new(File::create(&compile_args.output).context("failed to create output file")?);
bincode::serialize_into(out, &circ).context("failed to serialize circuit")?;
Ok(())
}
sourcepub fn set_simd_size(&mut self, size: NonZeroUsize)
pub fn set_simd_size(&mut self, size: NonZeroUsize)
Examples found in repository?
crates/seec/examples/bristol.rs (line 119)
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
fn compile(compile_args: CompileArgs) -> Result<()> {
let load = match compile_args.simd {
Some(_) => Load::SubCircuit,
None => Load::Circuit,
};
let mut bc: BaseCircuit = BaseCircuit::load_bristol(&compile_args.circuit, load)
.expect("failed to load bristol circuit");
let mut circ = match compile_args.simd {
Some(size) => {
bc.set_simd_size(size);
let circ_input_size = bc.sub_circuit_input_count();
let inputs = inputs::<u32>(circ_input_size);
let bc = bc.into_shared();
let (output, circ_id) = CircuitBuilder::with_global(|builder| {
builder.get_main_circuit().lock().set_simd_size(size);
let circ_id = builder.push_circuit(bc);
let output = builder.connect_sub_circuit(&inputs, circ_id);
(output, circ_id)
});
let main = output.connect_to_main(circ_id);
main.iter().for_each(|s| {
s.output();
});
let circ = CircuitBuilder::global_into_circuit();
ExecutableCircuit::DynLayers(circ)
}
None => ExecutableCircuit::DynLayers(bc.into()),
};
if !compile_args.dyn_layers {
circ = circ.precompute_layers();
}
let out =
BufWriter::new(File::create(&compile_args.output).context("failed to create output file")?);
bincode::serialize_into(out, &circ).context("failed to serialize circuit")?;
Ok(())
}
source§impl<P, G, Idx: GateIdx> BaseCircuit<P, G, Idx>
impl<P, G, Idx: GateIdx> BaseCircuit<P, G, Idx>
sourcepub fn from_bristol(bristol: Circuit, load: Load) -> Result<Self, CircuitError>
pub fn from_bristol(bristol: Circuit, load: Load) -> Result<Self, CircuitError>
sourcepub fn load_bristol(
path: impl AsRef<Path>,
load: Load
) -> Result<Self, CircuitError>
pub fn load_bristol( path: impl AsRef<Path>, load: Load ) -> Result<Self, CircuitError>
Examples found in repository?
crates/seec/examples/bristol.rs (line 114)
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
fn compile(compile_args: CompileArgs) -> Result<()> {
let load = match compile_args.simd {
Some(_) => Load::SubCircuit,
None => Load::Circuit,
};
let mut bc: BaseCircuit = BaseCircuit::load_bristol(&compile_args.circuit, load)
.expect("failed to load bristol circuit");
let mut circ = match compile_args.simd {
Some(size) => {
bc.set_simd_size(size);
let circ_input_size = bc.sub_circuit_input_count();
let inputs = inputs::<u32>(circ_input_size);
let bc = bc.into_shared();
let (output, circ_id) = CircuitBuilder::with_global(|builder| {
builder.get_main_circuit().lock().set_simd_size(size);
let circ_id = builder.push_circuit(bc);
let output = builder.connect_sub_circuit(&inputs, circ_id);
(output, circ_id)
});
let main = output.connect_to_main(circ_id);
main.iter().for_each(|s| {
s.output();
});
let circ = CircuitBuilder::global_into_circuit();
ExecutableCircuit::DynLayers(circ)
}
None => ExecutableCircuit::DynLayers(bc.into()),
};
if !compile_args.dyn_layers {
circ = circ.precompute_layers();
}
let out =
BufWriter::new(File::create(&compile_args.output).context("failed to create output file")?);
bincode::serialize_into(out, &circ).context("failed to serialize circuit")?;
Ok(())
}
impl ProgArgs {
fn log(&self) -> Option<&PathBuf> {
match self {
ProgArgs::Compile(args) => args.log.as_ref(),
ProgArgs::Execute(args) => args.log.as_ref(),
}
}
}
async fn execute(execute_args: ExecuteArgs) -> Result<()> {
let circ_name = execute_args
.circuit
.file_stem()
.unwrap()
.to_string_lossy()
.to_string();
let circuit = load_circ(&execute_args).context("failed to load circuit")?;
let create_party = |id, circ| {
let mut party = BenchParty::<BooleanGmw, u32>::new(id)
.explicit_circuit(circ)
.repeat(execute_args.repeat)
.insecure_setup(execute_args.insecure_setup)
.interleave_setup(execute_args.interleave_setup)
.metadata(circ_name.clone());
if let Some(domain) = &execute_args.domain {
party = party.tls_domain(domain.clone());
}
match (&execute_args.cert, &execute_args.cert_pk) {
(Some(cert), Some(pk)) => {
party = party.tls_config(ServerTlsConfig {
private_key_file: pk.clone(),
certificate_chain_file: cert.clone(),
});
}
(Some(_), None) | (None, Some(_)) => {
anyhow::bail!("Must provide both --cert and --cert-pk or neither")
}
_ => {}
}
if let Some(path) = &execute_args.stored_mts {
party = party.stored_mts(path);
}
if let Some(server) = execute_args.server {
party = party.server(server)
}
Ok(party)
};
let results = if let Some(id) = execute_args.id {
let party = create_party(id, circuit)?;
party.bench().await.context("Failed to run benchmark")?
} else {
let party0 = create_party(0, circuit.clone())?;
let party1 = create_party(1, circuit)?;
let bench0 = tokio::spawn(party0.bench());
let bench1 = tokio::spawn(party1.bench());
let (res0, _res1) = tokio::try_join!(bench0, bench1).context("Failed to join parties")?;
res0.context("Failed to run benchmark")?
};
// Depending on whether a --stats file is set, create a file writer or stdout
let mut writer: Box<dyn Write> = match execute_args.stats {
Some(path) => {
let file = File::create(path)?;
Box::new(file)
}
None => Box::new(stdout()),
};
// serde_json is used to write the statistics in json format. `.csv` is currently not
// supported.
serde_json::to_writer_pretty(&mut writer, &results)?;
writeln!(writer)?;
Ok(())
}
fn load_circ(args: &ExecuteArgs) -> Result<ExecutableCircuit<bool, BooleanGate, u32>> {
let res = bincode::deserialize_from(BufReader::new(
File::open(&args.circuit).context("Failed to open circuit file")?,
));
match res {
Ok(circ) => Ok(circ),
Err(_) => {
// try to load as bristol
Ok(ExecutableCircuit::DynLayers(
BaseCircuit::load_bristol(&args.circuit, Load::Circuit)
.context("Circuit is neither .seec file or bristol")?
.into(),
)
.precompute_layers())
}
}
}
More examples
crates/seec/examples/sha256.rs (line 57)
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
async fn main() -> Result<()> {
let _guard = init_tracing()?;
let args = Args::parse();
let circuit: ExecutableCircuit<bool, BooleanGate, u32> = ExecutableCircuit::DynLayers(
BaseCircuit::load_bristol(args.circuit, Load::Circuit)?.into(),
);
let (mut sender, bytes_written, mut receiver, bytes_read) = match args.id {
0 => seec_channel::tcp::listen(args.server).await?,
1 => seec_channel::tcp::connect(args.server).await?,
illegal => anyhow::bail!("Illegal party id {illegal}. Must be 0 or 1."),
};
// Initialize the communication statistics tracker with the counters for the main channel
let mut comm_stats = Statistics::new(bytes_written, bytes_read).without_unaccounted(true);
let (mut sender, mut receiver) =
sub_channels_for!(&mut sender, &mut receiver, 8, Message<BooleanGmw>).await?;
let mut executor: Executor<BooleanGmw, _> = if let Some(addr) = args.mt_provider {
let (mt_sender, bytes_written, mt_receiver, bytes_read) =
seec_channel::tcp::connect(addr).await?;
// Set the counters for the helper channel
comm_stats.set_helper(bytes_written, bytes_read);
let mt_provider = TrustedMTProviderClient::new("unique-id".into(), mt_sender, mt_receiver);
// As the MTs are generated when the Executor is created, we record the communication
// with the `record_helper` method and a custom category
comm_stats
.record_helper(
Phase::Custom("Helper-Mts".into()),
Executor::new(&circuit, args.id, mt_provider),
)
.await?
} else {
let mt_provider = InsecureMTProvider::default();
comm_stats
.record(
Phase::FunctionDependentSetup,
Executor::new(&circuit, args.id, mt_provider),
)
.await?
};
let input = BitVec::repeat(false, 768);
let _out = comm_stats
.record(
Phase::Online,
executor.execute(Input::Scalar(input), &mut sender, &mut receiver),
)
.await?;
// Depending on whether a --stats file is set, create a file writer or stdout
let mut writer: Box<dyn Write> = match args.stats {
Some(path) => {
let file = File::create(path)?;
Box::new(file)
}
None => Box::new(stdout()),
};
// serde_json is used to write the statistics in json format. `.csv` is currently not
// supported.
let mut res = comm_stats.into_run_result();
res.add_metadata("circuit", "sha256.rs");
serde_json::to_writer_pretty(&mut writer, &res)?;
writeln!(writer)?;
Ok(())
}
Trait Implementations§
source§impl<P, G, Idx, W> Debug for BaseCircuit<P, G, Idx, W>
impl<P, G, Idx, W> Debug for BaseCircuit<P, G, Idx, W>
source§impl<'de, Plain, Gate, Idx, Wire> Deserialize<'de> for BaseCircuit<Plain, Gate, Idx, Wire>where
Gate: Serialize + DeserializeOwned,
Idx: GateIdx + Serialize + DeserializeOwned,
Wire: Serialize + DeserializeOwned,
impl<'de, Plain, Gate, Idx, Wire> Deserialize<'de> for BaseCircuit<Plain, Gate, Idx, Wire>where
Gate: Serialize + DeserializeOwned,
Idx: GateIdx + Serialize + DeserializeOwned,
Wire: Serialize + DeserializeOwned,
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<P, G, Idx: GateIdx + Default, W> From<BaseCircuit<P, G, Idx, W>> for Circuit<P, G, Idx, W>
impl<P, G, Idx: GateIdx + Default, W> From<BaseCircuit<P, G, Idx, W>> for Circuit<P, G, Idx, W>
source§fn from(bc: BaseCircuit<P, G, Idx, W>) -> Self
fn from(bc: BaseCircuit<P, G, Idx, W>) -> Self
Converts to this type from the input type.
source§impl<P, G: Gate<P>, Idx: GateIdx, W: Wire> LayerIterable for BaseCircuit<P, G, Idx, W>
impl<P, G: Gate<P>, Idx: GateIdx, W: Wire> LayerIterable for BaseCircuit<P, G, Idx, W>
type Layer = CircuitLayer<G, Idx>
type LayerIter<'this> = BaseLayerIter<'this, P, G, Idx, W> where Self: 'this
fn layer_iter(&self) -> Self::LayerIter<'_>
source§impl<Plain, Gate, Idx, Wire> Serialize for BaseCircuit<Plain, Gate, Idx, Wire>where
Gate: Serialize + DeserializeOwned,
Idx: GateIdx + Serialize + DeserializeOwned,
Wire: Serialize + DeserializeOwned,
impl<Plain, Gate, Idx, Wire> Serialize for BaseCircuit<Plain, Gate, Idx, Wire>where
Gate: Serialize + DeserializeOwned,
Idx: GateIdx + Serialize + DeserializeOwned,
Wire: Serialize + DeserializeOwned,
Auto Trait Implementations§
impl<Plain, Gate, Idx, Wire> Freeze for BaseCircuit<Plain, Gate, Idx, Wire>
impl<Plain, Gate, Idx, Wire> RefUnwindSafe for BaseCircuit<Plain, Gate, Idx, Wire>
impl<Plain, Gate, Idx, Wire> Send for BaseCircuit<Plain, Gate, Idx, Wire>
impl<Plain, Gate, Idx, Wire> Sync for BaseCircuit<Plain, Gate, Idx, Wire>
impl<Plain, Gate, Idx, Wire> Unpin for BaseCircuit<Plain, Gate, Idx, Wire>
impl<Plain, Gate, Idx, Wire> UnwindSafe for BaseCircuit<Plain, Gate, Idx, Wire>
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
§impl<T> CloneAny for T
impl<T> CloneAny for T
§impl<T> CloneDebuggableStorage for Twhere
T: DebuggableStorage + Clone,
impl<T> CloneDebuggableStorage for Twhere
T: DebuggableStorage + Clone,
fn clone_storage(&self) -> Box<dyn CloneDebuggableStorage>
§impl<T> CloneableStorage for T
impl<T> CloneableStorage for T
fn clone_storage(&self) -> Box<dyn CloneableStorage>
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
Causes
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
Causes
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
Causes
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
Causes
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
Causes
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
Causes
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
Causes
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
Causes
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
Formats each item in a sequence. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Pipes by value. This is generally the method you want to use. Read more
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
Borrows
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
Mutably borrows
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
Borrows
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
Mutably borrows
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
Borrows
self
, then passes self.deref()
into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> Serialize for T
impl<T> Serialize for T
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>
fn do_erased_serialize( &self, serializer: &mut dyn Serializer ) -> Result<(), ErrorImpl>
§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Immutable access to the
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
Mutable access to the
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
Immutable access to the
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
Mutable access to the
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Immutable access to the
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Mutable access to the
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
Calls
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
Calls
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
Calls
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
Calls
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
Calls
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
Calls
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
Calls
.tap_deref()
only in debug builds, and is erased in release
builds.