pub struct Scatter<X, Y>{ /* private fields */ }
Implementations§
Source§impl<X, Y> Scatter<X, Y>
impl<X, Y> Scatter<X, Y>
pub fn new<I, K>(x: I, y: K) -> Box<Scatter<X, Y>>where
I: IntoIterator<Item = X>,
K: IntoIterator<Item = Y>,
Sourcepub fn web_gl_mode(self, on: bool) -> Box<Scatter<X, Y>>
pub fn web_gl_mode(self, on: bool) -> Box<Scatter<X, Y>>
Enables WebGL.
Sourcepub fn name(self, name: &str) -> Box<Scatter<X, Y>>
pub fn name(self, name: &str) -> Box<Scatter<X, Y>>
Sets the trace name. The trace name appear as the legend item and on hover.
Sourcepub fn visible(self, visible: Visible) -> Box<Scatter<X, Y>>
pub fn visible(self, visible: Visible) -> Box<Scatter<X, Y>>
Determines whether or not this trace is visible. If Visible::LegendOnly
, the trace is not
drawn, but can appear as a legend item (provided that the legend itself is visible).
Sourcepub fn show_legend(self, show_legend: bool) -> Box<Scatter<X, Y>>
pub fn show_legend(self, show_legend: bool) -> Box<Scatter<X, Y>>
Determines whether or not an item corresponding to this trace is shown in the legend.
Sourcepub fn legend_group(self, legend_group: &str) -> Box<Scatter<X, Y>>
pub fn legend_group(self, legend_group: &str) -> Box<Scatter<X, Y>>
Sets the legend group for this trace. Traces part of the same legend group hide/show at the same time when toggling legend items.
Sourcepub fn mode(self, mode: Mode) -> Box<Scatter<X, Y>>
pub fn mode(self, mode: Mode) -> Box<Scatter<X, Y>>
Determines the drawing mode for this scatter trace. If the provided Mode
includes
“Text” then the text
elements appear at the coordinates. Otherwise, the text
elements
appear on hover. If there are less than 20 points and the trace is not stacked then the
default is Mode::LinesMarkers
, otherwise it is Mode::Lines
.
Sourcepub fn ids<S>(self, ids: Vec<S>) -> Box<Scatter<X, Y>>
pub fn ids<S>(self, ids: Vec<S>) -> Box<Scatter<X, Y>>
Assigns id labels to each datum. These ids for object constancy of data points during animation. Should be an array of strings, not numbers or any other type.
Sourcepub fn x0<C>(self, x0: C) -> Box<Scatter<X, Y>>where
C: NumOrString,
pub fn x0<C>(self, x0: C) -> Box<Scatter<X, Y>>where
C: NumOrString,
Alternate to x
. Builds a linear space of x coordinates. Use with dx
where x0
is the
starting coordinate and dx
the step.
Sourcepub fn dx(self, dx: f64) -> Box<Scatter<X, Y>>
pub fn dx(self, dx: f64) -> Box<Scatter<X, Y>>
Sets the x coordinate step. See x0
for more info.
Sourcepub fn y0<C>(self, y0: C) -> Box<Scatter<X, Y>>where
C: NumOrString,
pub fn y0<C>(self, y0: C) -> Box<Scatter<X, Y>>where
C: NumOrString,
Alternate to y
. Builds a linear space of y coordinates. Use with dy
where y0
is the
starting coordinate and dy
the step.
Sourcepub fn dy(self, dy: f64) -> Box<Scatter<X, Y>>
pub fn dy(self, dy: f64) -> Box<Scatter<X, Y>>
Sets the y coordinate step. See y0
for more info.
Sourcepub fn text(self, text: &str) -> Box<Scatter<X, Y>>
pub fn text(self, text: &str) -> Box<Scatter<X, Y>>
Sets text elements associated with each (x,y) pair. If a single string, the same string
appears over all the data points. If an array of string, the items are mapped in order to
the this trace’s (x,y) coordinates. If the trace HoverInfo
contains a “text” flag and
hover_text
is not set, these elements will be seen in the hover labels.
Sourcepub fn text_array<S>(self, text: Vec<S>) -> Box<Scatter<X, Y>>
pub fn text_array<S>(self, text: Vec<S>) -> Box<Scatter<X, Y>>
Sets text elements associated with each (x,y) pair. If a single string, the same string
appears over all the data points. If an array of string, the items are mapped in order to
the this trace’s (x,y) coordinates. If trace HoverInfo
contains a “text” flag and
hover_text
is not set, these elements will be seen in the hover labels.
Sourcepub fn text_position(self, text_position: Position) -> Box<Scatter<X, Y>>
pub fn text_position(self, text_position: Position) -> Box<Scatter<X, Y>>
Sets the positions of the text
elements with respects to the (x,y) coordinates.
Sourcepub fn text_position_array(
self,
text_position: Vec<Position>,
) -> Box<Scatter<X, Y>>
pub fn text_position_array( self, text_position: Vec<Position>, ) -> Box<Scatter<X, Y>>
Sets the positions of the text
elements with respects to the (x,y) coordinates.
Sourcepub fn text_template(self, text_template: &str) -> Box<Scatter<X, Y>>
pub fn text_template(self, text_template: &str) -> Box<Scatter<X, Y>>
Template string used for rendering the information text that appear on points. Note that
this will override textinfo
. Variables are inserted using %{variable}, for example
“y: %{y}”. Numbers are formatted using d3-format’s syntax %{variable:d3-format}, for example
“Price: %{y:$.2f}”. See format
for details on the formatting syntax. Dates are formatted using d3-time-format’s syntax
%{variable|d3-time-format}, for example “Day: %{2019-01-01|%A}”.
See format for details
on the date formatting syntax. Every attributes that can be specified per-point (the ones
that are arrayOk: true
) are available.
Sourcepub fn text_template_array<S>(self, text_template: Vec<S>) -> Box<Scatter<X, Y>>
pub fn text_template_array<S>(self, text_template: Vec<S>) -> Box<Scatter<X, Y>>
Template string used for rendering the information text that appear on points. Note that
this will override textinfo
. Variables are inserted using %{variable}, for example
“y: %{y}”. Numbers are formatted using d3-format’s syntax %{variable:d3-format}, for example
“Price: %{y:$.2f}”. See format
for details on the formatting syntax. Dates are formatted using d3-time-format’s syntax
%{variable|d3-time-format}, for example “Day: %{2019-01-01|%A}”.
See format for details
on the date formatting syntax. Every attributes that can be specified per-point (the ones
that are arrayOk: true
) are available.
Sourcepub fn hover_text(self, hover_text: &str) -> Box<Scatter<X, Y>>
pub fn hover_text(self, hover_text: &str) -> Box<Scatter<X, Y>>
Sets hover text elements associated with each (x,y) pair. If a single string, the same
string appears over all the data points. If an array of string, the items are mapped in
order to the this trace’s (x,y) coordinates. To be seen, trace HoverInfo
must contain a
“Text” flag.
Sourcepub fn hover_text_array<S>(self, hover_text: Vec<S>) -> Box<Scatter<X, Y>>
pub fn hover_text_array<S>(self, hover_text: Vec<S>) -> Box<Scatter<X, Y>>
Sets hover text elements associated with each (x,y) pair. If a single string, the same
string appears over all the data points. If an array of string, the items are mapped in
order to the this trace’s (x,y) coordinates. To be seen, trace HoverInfo
must contain a
“Text” flag.
Sourcepub fn hover_info(self, hover_info: HoverInfo) -> Box<Scatter<X, Y>>
pub fn hover_info(self, hover_info: HoverInfo) -> Box<Scatter<X, Y>>
Determines which trace information appear on hover. If HoverInfo::None
or HoverInfo::Skip
are set, no information is displayed upon hovering. But, if HoverInfo::None
is set, click
and hover events are still fired.
Sourcepub fn hover_template(self, hover_template: &str) -> Box<Scatter<X, Y>>
pub fn hover_template(self, hover_template: &str) -> Box<Scatter<X, Y>>
Template string used for rendering the information that appear on hover box. Note that this
will override HoverInfo
. Variables are inserted using %{variable}, for example “y: %{y}”.
Numbers are formatted using d3-format’s syntax %{variable:d3-format}, for example
“Price: %{y:$.2f}”.
https://github.com/d3/d3-3.x-api-reference/blob/master/Formatting.md#d3_format for details
on the formatting syntax. Dates are formatted using d3-time-format’s syntax
%{variable|d3-time-format}, for example “Day: %{2019-01-01|%A}”.
https://github.com/d3/d3-3.x-api-reference/blob/master/Time-Formatting.md#format for details
on the date formatting syntax. The variables available in hovertemplate
are the ones
emitted as event data described at this link https://plotly.com/javascript/plotlyjs-events/#event-data.
Additionally, every attributes that can be specified per-point (the ones that are
arrayOk: true
) are available. Anything contained in tag <extra>
is displayed in the
secondary box, for example “<extra></extra>
.
Sourcepub fn hover_template_array<S>(
self,
hover_template: Vec<S>,
) -> Box<Scatter<X, Y>>
pub fn hover_template_array<S>( self, hover_template: Vec<S>, ) -> Box<Scatter<X, Y>>
Template string used for rendering the information that appear on hover box. Note that this
will override HoverInfo
. Variables are inserted using %{variable}, for example “y: %{y}”.
Numbers are formatted using d3-format’s syntax %{variable:d3-format}, for example
“Price: %{y:$.2f}”.
https://github.com/d3/d3-3.x-api-reference/blob/master/Formatting.md#d3_format for details
on the formatting syntax. Dates are formatted using d3-time-format’s syntax
%{variable|d3-time-format}, for example “Day: %{2019-01-01|%A}”.
https://github.com/d3/d3-3.x-api-reference/blob/master/Time-Formatting.md#format for details
on the date formatting syntax. The variables available in hovertemplate
are the ones
emitted as event data described at this link https://plotly.com/javascript/plotlyjs-events/#event-data.
Additionally, every attributes that can be specified per-point (the ones that are
arrayOk: true
) are available. Anything contained in tag <extra>
is displayed in the
secondary box, for example “<extra></extra>
.
Sourcepub fn meta<C>(self, meta: C) -> Box<Scatter<X, Y>>where
C: NumOrString,
pub fn meta<C>(self, meta: C) -> Box<Scatter<X, Y>>where
C: NumOrString,
Assigns extra meta information associated with this trace that can be used in various text
attributes. Attributes such as trace name
, graph, axis and colorbar title.text
,
annotation text
rangeselector
, updatemenues
and sliders
label
text all support
meta
. To access the trace meta
values in an attribute in the same trace, simply use
%{meta[i]}
where i
is the index or key of the meta
item in question. To access trace
meta
in layout attributes, use %{data[n[.meta[i]}
where i
is the index or key of the
meta
and n
is the trace index.
Sourcepub fn custom_data<C>(self, custom_data: Vec<C>) -> Box<Scatter<X, Y>>where
C: NumOrString,
pub fn custom_data<C>(self, custom_data: Vec<C>) -> Box<Scatter<X, Y>>where
C: NumOrString,
Assigns extra data each datum. This may be useful when listening to hover, click and selection events. Note that, “scatter” traces also appends customdata items in the markers DOM elements
Sourcepub fn x_axis(self, axis: &str) -> Box<Scatter<X, Y>>
pub fn x_axis(self, axis: &str) -> Box<Scatter<X, Y>>
Sets a reference between this trace’s x coordinates and a 2D cartesian x axis. If “x” (
the default value), the x coordinates refer to Layout::x_axis
. If “x2”, the x coordinates
refer to Layout::x_axis2
, and so on.
Sourcepub fn y_axis(self, axis: &str) -> Box<Scatter<X, Y>>
pub fn y_axis(self, axis: &str) -> Box<Scatter<X, Y>>
Sets a reference between this trace’s y coordinates and a 2D cartesian y axis. If “y”
(the default value), the y coordinates refer to Layout::y_axis
. If “y2”, the y coordinates
refer to Layout::y_axis2
, and so on.
Sourcepub fn orientation(self, orientation: Orientation) -> Box<Scatter<X, Y>>
pub fn orientation(self, orientation: Orientation) -> Box<Scatter<X, Y>>
Only relevant when stackgroup
is used, and only the first orientation
found in the
stackgroup
will be used - including if visible
is “legendonly” but not if it is false
.
Sets the stacking direction. With “v” (“h”), the y (x) values of subsequent traces are
added. Also affects the default value of fill
.
Sourcepub fn group_norm(self, group_norm: GroupNorm) -> Box<Scatter<X, Y>>
pub fn group_norm(self, group_norm: GroupNorm) -> Box<Scatter<X, Y>>
Only relevant when stackgroup
is used, and only the first groupnorm
found in the
stackgroup
will be used - including if visible
is “legendonly” but not if it is false
.
Sets the normalization for the sum of this stackgroup
. With “fraction”, the value of each
trace at each location is divided by the sum of all trace values at that location. “percent”
is the same but multiplied by 100 to show percentages. If there are multiple subplots, or
multiple stackgroup
s on one subplot, each will be normalized within its own set.
Sourcepub fn stack_group(self, stack_group: &str) -> Box<Scatter<X, Y>>
pub fn stack_group(self, stack_group: &str) -> Box<Scatter<X, Y>>
Set several scatter traces (on the same subplot) to the same stackgroup in order to add
their y values (or their x values if orientation
is “h”). If blank or omitted this trace
will not be stacked. Stacking also turns fill
on by default, using “tonexty” (“tonextx”)
if orientation
is “h” (“v”) and sets the default mode
to “lines” irrespective of point
count. You can only stack on a numeric (linear or log) axis. Traces in a stackgroup
will
only fill to (or be filled to) other traces in the same group. With multiple stackgroup
s
or some traces stacked and some not, if fill-linked traces are not already consecutive, the
later ones will be pushed down in the drawing order.
Sourcepub fn marker(self, marker: Marker) -> Box<Scatter<X, Y>>
pub fn marker(self, marker: Marker) -> Box<Scatter<X, Y>>
Determines how points are displayed and joined.
Sourcepub fn error_x(self, error_x: ErrorData) -> Box<Scatter<X, Y>>
pub fn error_x(self, error_x: ErrorData) -> Box<Scatter<X, Y>>
x-axis error display properties.
Sourcepub fn error_y(self, error_y: ErrorData) -> Box<Scatter<X, Y>>
pub fn error_y(self, error_y: ErrorData) -> Box<Scatter<X, Y>>
y-axis error display properties.
Sourcepub fn clip_on_axis(self, clip_on_axis: bool) -> Box<Scatter<X, Y>>
pub fn clip_on_axis(self, clip_on_axis: bool) -> Box<Scatter<X, Y>>
Determines whether or not markers and text nodes are clipped about the subplot axes. To show
markers and text nodes above axis lines and tick labels, make sure to set xaxis.layer
and
yaxis.layer
to “below traces”.
Sourcepub fn connect_gaps(self, connect_gaps: bool) -> Box<Scatter<X, Y>>
pub fn connect_gaps(self, connect_gaps: bool) -> Box<Scatter<X, Y>>
Determines whether or not gaps (i.e. {nan} or missing values) in the provided data arrays are connected.
Sourcepub fn fill(self, fill: Fill) -> Box<Scatter<X, Y>>
pub fn fill(self, fill: Fill) -> Box<Scatter<X, Y>>
Sets the area to fill with a solid color. Defaults to “none” unless this trace is stacked,
then it gets “tonexty” (“tonextx”) if orientation
is “v” (“h”) Use with fillcolor
if not
“none”. “tozerox” and “tozeroy” fill to x=0 and y=0 respectively. “tonextx” and “tonexty”
fill between the endpoints of this trace and the endpoints of the trace before it,
connecting those endpoints with straight lines (to make a stacked area graph); if there is
no trace before it, they behave like “tozerox” and “tozeroy”. “toself” connects the
endpoints of the trace (or each segment of the trace if it has gaps) into a closed shape.
“tonext” fills the space between two traces if one completely encloses the other
(eg consecutive contour lines), and behaves like “toself” if there is no trace before it.
“tonext” should not be used if one trace does not enclose the other. Traces in a
stackgroup
will only fill to (or be filled to) other traces in the same group. With
multiple stackgroup
s or some traces stacked and some not, if fill-linked traces are not
already consecutive, the later ones will be pushed down in the drawing order.
Sourcepub fn fill_color<C>(self, fill_color: C) -> Box<Scatter<X, Y>>where
C: Color,
pub fn fill_color<C>(self, fill_color: C) -> Box<Scatter<X, Y>>where
C: Color,
Sets the fill color. Defaults to a half-transparent variant of the line color, marker color, or marker line color, whichever is available.
Sourcepub fn hover_label(self, hover_label: Label) -> Box<Scatter<X, Y>>
pub fn hover_label(self, hover_label: Label) -> Box<Scatter<X, Y>>
Properties of label displayed on mouse hover.
Sourcepub fn hover_on(self, hover_on: &str) -> Box<Scatter<X, Y>>
pub fn hover_on(self, hover_on: &str) -> Box<Scatter<X, Y>>
Do the hover effects highlight individual points (markers or line points) or do they highlight filled regions? If the fill is “toself” or “tonext” and there are no markers or text, then the default is “fills”, otherwise it is “points”.
Sourcepub fn stack_gaps(self, stack_gaps: &str) -> Box<Scatter<X, Y>>
pub fn stack_gaps(self, stack_gaps: &str) -> Box<Scatter<X, Y>>
Only relevant when stack_group
is used, and only the first stack_gaps
found in the
stackgroup
will be used - including if visible
is set to Visible::LegendOnly
but not
if it is set to Visible::False
.
Determines how we handle locations at which other traces in this group have data but this
one does not. With “infer zero” we insert a zero at these locations. With “interpolate” we
linearly interpolate between existing values, and extrapolate a constant beyond the existing
values.
Sourcepub fn x_calendar(self, x_calendar: Calendar) -> Box<Scatter<X, Y>>
pub fn x_calendar(self, x_calendar: Calendar) -> Box<Scatter<X, Y>>
Sets the calendar system to use with x
date data.
Sourcepub fn y_calendar(self, y_calendar: Calendar) -> Box<Scatter<X, Y>>
pub fn y_calendar(self, y_calendar: Calendar) -> Box<Scatter<X, Y>>
Sets the calendar system to use with y
date data.
Trait Implementations§
Source§impl<X, Y> Serialize for Scatter<X, Y>
impl<X, Y> Serialize for Scatter<X, Y>
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Auto Trait Implementations§
impl<X, Y> Freeze for Scatter<X, Y>
impl<X, Y> RefUnwindSafe for Scatter<X, Y>where
X: RefUnwindSafe,
Y: RefUnwindSafe,
impl<X, Y> Send for Scatter<X, Y>
impl<X, Y> Sync for Scatter<X, Y>
impl<X, Y> Unpin for Scatter<X, Y>
impl<X, Y> UnwindSafe for Scatter<X, Y>where
X: UnwindSafe,
Y: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.Source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§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,
self
and passes that borrow into the pipe function. Read moreSource§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,
self
and passes that borrow into the pipe function. Read moreSource§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
Source§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
Source§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
self
, then passes self.as_ref()
into the pipe function.Source§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
self
, then passes self.as_mut()
into the pipe
function.Source§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
self
, then passes self.deref()
into the pipe function.Source§impl<T> PipeAsRef for T
impl<T> PipeAsRef for T
Source§impl<T> PipeBorrow for T
impl<T> PipeBorrow for T
Source§impl<T> PipeDeref for T
impl<T> PipeDeref for T
Source§impl<T> PipeRef for T
impl<T> PipeRef for T
Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.Source§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
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.Source§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
.tap_ref_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap<F, R>(self, func: F) -> Selfwhere
F: FnOnce(&Self) -> R,
fn tap<F, R>(self, func: F) -> Selfwhere
F: FnOnce(&Self) -> R,
Source§fn tap_dbg<F, R>(self, func: F) -> Selfwhere
F: FnOnce(&Self) -> R,
fn tap_dbg<F, R>(self, func: F) -> Selfwhere
F: FnOnce(&Self) -> R,
tap
in debug builds, and does nothing in release builds.Source§fn tap_mut<F, R>(self, func: F) -> Selfwhere
F: FnOnce(&mut Self) -> R,
fn tap_mut<F, R>(self, func: F) -> Selfwhere
F: FnOnce(&mut Self) -> R,
Source§fn tap_mut_dbg<F, R>(self, func: F) -> Selfwhere
F: FnOnce(&mut Self) -> R,
fn tap_mut_dbg<F, R>(self, func: F) -> Selfwhere
F: FnOnce(&mut Self) -> R,
tap_mut
in debug builds, and does nothing in release builds.Source§impl<T, U> TapAsRef<U> for Twhere
U: ?Sized,
impl<T, U> TapAsRef<U> for Twhere
U: ?Sized,
Source§fn tap_ref<F, R>(self, func: F) -> Self
fn tap_ref<F, R>(self, func: F) -> Self
Source§fn tap_ref_dbg<F, R>(self, func: F) -> Self
fn tap_ref_dbg<F, R>(self, func: F) -> Self
tap_ref
in debug builds, and does nothing in release builds.Source§fn tap_ref_mut<F, R>(self, func: F) -> Self
fn tap_ref_mut<F, R>(self, func: F) -> Self
Source§impl<T, U> TapBorrow<U> for Twhere
U: ?Sized,
impl<T, U> TapBorrow<U> for Twhere
U: ?Sized,
Source§fn tap_borrow<F, R>(self, func: F) -> Self
fn tap_borrow<F, R>(self, func: F) -> Self
Source§fn tap_borrow_dbg<F, R>(self, func: F) -> Self
fn tap_borrow_dbg<F, R>(self, func: F) -> Self
tap_borrow
in debug builds, and does nothing in release builds.Source§fn tap_borrow_mut<F, R>(self, func: F) -> Self
fn tap_borrow_mut<F, R>(self, func: F) -> Self
Source§impl<T> TapDeref for T
impl<T> TapDeref for T
Source§fn tap_deref_dbg<F, R>(self, func: F) -> Self
fn tap_deref_dbg<F, R>(self, func: F) -> Self
tap_deref
in debug builds, and does nothing in release builds.Source§fn tap_deref_mut<F, R>(self, func: F) -> Self
fn tap_deref_mut<F, R>(self, func: F) -> Self
self
for modification.