udp_request/request/request_builder/
struct.rs

1use crate::*;
2
3/// A builder for creating and configuring a `UdpRequest`.
4///
5/// This struct provides a fluent interface for building a `UdpRequest`.
6#[derive(Debug, Clone)]
7pub struct RequestBuilder {
8    /// The `UdpRequest` instance being built.
9    pub(crate) udp_request: UdpRequest,
10    /// A mutable `UdpRequest` instance used for configuration.
11    pub(crate) builder: UdpRequest,
12}