Skip to main content

AdminBuilder

Struct AdminBuilder 

Source
pub struct AdminBuilder { /* private fields */ }
Expand description

Builder for creating and configuring admin clients

§Examples

use rocketmq_admin_core::core::admin::AdminBuilder;

// Simple usage
let admin = AdminBuilder::new()
    .namesrv_addr("127.0.0.1:9876")
    .build_and_start()
    .await?;

// With custom configuration
let admin = AdminBuilder::new()
    .namesrv_addr("127.0.0.1:9876;127.0.0.1:9877")
    .instance_name("my-admin-tool")
    .timeout_millis(5000)
    .build_and_start()
    .await?;

Implementations§

Source§

impl AdminBuilder

Source

pub fn new() -> Self

Create a new builder with default configuration

Examples found in repository?
examples/admin_builder_pattern.rs (line 50)
47async fn example_builder() -> RocketMQResult<()> {
48    println!("\n=== Example 2: Builder Pattern ===");
49
50    let admin = AdminBuilder::new()
51        .namesrv_addr("127.0.0.1:9876")
52        .instance_name("example-admin")
53        .timeout_millis(5000)
54        .build_with_guard()
55        .await?;
56
57    // Get topic route info
58    let route = admin.examine_topic_route_info("TestTopic".into()).await?;
59
60    if let Some(route_data) = route {
61        println!("Queue data count: {}", route_data.queue_datas.len());
62        println!("Broker data count: {}", route_data.broker_datas.len());
63    } else {
64        println!("No route data found for TestTopic");
65    }
66
67    Ok(())
68}
69
70/// Example 3: Multiple NameServers with fallback
71async fn example_multiple_namesrv() -> RocketMQResult<()> {
72    println!("\n=== Example 3: Multiple NameServers ===");
73
74    // Try primary NameServers
75    let result = AdminBuilder::new()
76        .namesrv_addr("127.0.0.1:9876;127.0.0.1:9877")
77        .build_with_guard()
78        .await;
79
80    let _admin = match result {
81        Ok(admin) => {
82            println!("Connected to primary NameServer");
83            admin
84        }
85        Err(e) => {
86            eprintln!("Primary NameServer failed: {e}");
87            eprintln!("Falling back to backup...");
88
89            // Fallback to backup
90            AdminBuilder::new()
91                .namesrv_addr("127.0.0.1:9878")
92                .build_with_guard()
93                .await?
94        }
95    };
96
97    println!("Admin client ready");
98
99    Ok(())
100}
101
102/// Example 4: Early return with automatic cleanup
103async fn example_early_return(topic: &str) -> RocketMQResult<()> {
104    println!("\n=== Example 4: Early Return ===");
105
106    let admin = AdminBuilder::new()
107        .namesrv_addr("127.0.0.1:9876")
108        .build_with_guard()
109        .await?;
110
111    // Get topic route
112    let route = admin.examine_topic_route_info(topic.into()).await?;
113
114    // Early return if no route data - admin still cleaned up!
115    let Some(route_data) = route else {
116        println!("Topic '{}' not found, exiting early", topic);
117        return Ok(());
118    };
119
120    // Early return if no queues - admin still cleaned up!
121    if route_data.queue_datas.is_empty() {
122        println!("Topic '{}' has no queues, exiting early", topic);
123        return Ok(());
124    }
125
126    println!("Topic '{}' has {} queues", topic, route_data.queue_datas.len());
127
128    // Process queues...
129    for queue in &route_data.queue_datas {
130        println!(
131            "  Broker: {}, ReadQueueNums: {}, WriteQueueNums: {}",
132            queue.broker_name, queue.read_queue_nums, queue.write_queue_nums
133        );
134    }
135
136    Ok(())
137}
138
139/// Example 5: Explicit shutdown for logging
140async fn example_explicit_shutdown() -> RocketMQResult<()> {
141    println!("\n=== Example 5: Explicit Shutdown ===");
142
143    let admin = AdminBuilder::new()
144        .namesrv_addr("127.0.0.1:9876")
145        .instance_name("explicit-shutdown-example")
146        .build_with_guard()
147        .await?;
148
149    // Use admin...
150    println!("Admin client started successfully");
151
152    // Explicit shutdown with logging
153    println!("Shutting down admin client...");
154    admin.shutdown().await;
155    println!("Shutdown complete");
156
157    Ok(())
158}
159
160/// Example 6: Dynamic configuration from environment
161async fn example_from_environment() -> RocketMQResult<()> {
162    println!("\n=== Example 6: Environment Configuration ===");
163
164    use std::env;
165
166    // Read from environment with defaults
167    let namesrv_addr = env::var("NAMESRV_ADDR").unwrap_or_else(|_| "127.0.0.1:9876".to_string());
168
169    let instance_name = env::var("INSTANCE_NAME").unwrap_or_else(|_| "env-admin".to_string());
170
171    println!("NameServer: {}", namesrv_addr);
172    println!("Instance: {}", instance_name);
173
174    let _admin = AdminBuilder::new()
175        .namesrv_addr(namesrv_addr)
176        .instance_name(instance_name)
177        .build_with_guard()
178        .await?;
179
180    println!("Admin configured from environment");
181
182    Ok(())
183}
184
185/// Example 7: Without RAII (manual cleanup)
186async fn example_manual_cleanup() -> RocketMQResult<()> {
187    println!("\n=== Example 7: Manual Cleanup ===");
188
189    // Use build_and_start() instead of build_with_guard()
190    let mut admin = AdminBuilder::new()
191        .namesrv_addr("127.0.0.1:9876")
192        .build_and_start() // Returns DefaultMQAdminExt directly
193        .await?;
194
195    // Use admin...
196    println!("Admin started");
197
198    // Manual shutdown required
199    admin.shutdown().await;
200    println!("Manually shut down");
201
202    Ok(())
203}
Source

pub fn namesrv_addr(self, addr: impl Into<String>) -> Self

Set NameServer address

Supports multiple addresses separated by semicolon:

  • Single: "127.0.0.1:9876"
  • Multiple: "127.0.0.1:9876;127.0.0.1:9877"
Examples found in repository?
examples/admin_builder_pattern.rs (line 51)
47async fn example_builder() -> RocketMQResult<()> {
48    println!("\n=== Example 2: Builder Pattern ===");
49
50    let admin = AdminBuilder::new()
51        .namesrv_addr("127.0.0.1:9876")
52        .instance_name("example-admin")
53        .timeout_millis(5000)
54        .build_with_guard()
55        .await?;
56
57    // Get topic route info
58    let route = admin.examine_topic_route_info("TestTopic".into()).await?;
59
60    if let Some(route_data) = route {
61        println!("Queue data count: {}", route_data.queue_datas.len());
62        println!("Broker data count: {}", route_data.broker_datas.len());
63    } else {
64        println!("No route data found for TestTopic");
65    }
66
67    Ok(())
68}
69
70/// Example 3: Multiple NameServers with fallback
71async fn example_multiple_namesrv() -> RocketMQResult<()> {
72    println!("\n=== Example 3: Multiple NameServers ===");
73
74    // Try primary NameServers
75    let result = AdminBuilder::new()
76        .namesrv_addr("127.0.0.1:9876;127.0.0.1:9877")
77        .build_with_guard()
78        .await;
79
80    let _admin = match result {
81        Ok(admin) => {
82            println!("Connected to primary NameServer");
83            admin
84        }
85        Err(e) => {
86            eprintln!("Primary NameServer failed: {e}");
87            eprintln!("Falling back to backup...");
88
89            // Fallback to backup
90            AdminBuilder::new()
91                .namesrv_addr("127.0.0.1:9878")
92                .build_with_guard()
93                .await?
94        }
95    };
96
97    println!("Admin client ready");
98
99    Ok(())
100}
101
102/// Example 4: Early return with automatic cleanup
103async fn example_early_return(topic: &str) -> RocketMQResult<()> {
104    println!("\n=== Example 4: Early Return ===");
105
106    let admin = AdminBuilder::new()
107        .namesrv_addr("127.0.0.1:9876")
108        .build_with_guard()
109        .await?;
110
111    // Get topic route
112    let route = admin.examine_topic_route_info(topic.into()).await?;
113
114    // Early return if no route data - admin still cleaned up!
115    let Some(route_data) = route else {
116        println!("Topic '{}' not found, exiting early", topic);
117        return Ok(());
118    };
119
120    // Early return if no queues - admin still cleaned up!
121    if route_data.queue_datas.is_empty() {
122        println!("Topic '{}' has no queues, exiting early", topic);
123        return Ok(());
124    }
125
126    println!("Topic '{}' has {} queues", topic, route_data.queue_datas.len());
127
128    // Process queues...
129    for queue in &route_data.queue_datas {
130        println!(
131            "  Broker: {}, ReadQueueNums: {}, WriteQueueNums: {}",
132            queue.broker_name, queue.read_queue_nums, queue.write_queue_nums
133        );
134    }
135
136    Ok(())
137}
138
139/// Example 5: Explicit shutdown for logging
140async fn example_explicit_shutdown() -> RocketMQResult<()> {
141    println!("\n=== Example 5: Explicit Shutdown ===");
142
143    let admin = AdminBuilder::new()
144        .namesrv_addr("127.0.0.1:9876")
145        .instance_name("explicit-shutdown-example")
146        .build_with_guard()
147        .await?;
148
149    // Use admin...
150    println!("Admin client started successfully");
151
152    // Explicit shutdown with logging
153    println!("Shutting down admin client...");
154    admin.shutdown().await;
155    println!("Shutdown complete");
156
157    Ok(())
158}
159
160/// Example 6: Dynamic configuration from environment
161async fn example_from_environment() -> RocketMQResult<()> {
162    println!("\n=== Example 6: Environment Configuration ===");
163
164    use std::env;
165
166    // Read from environment with defaults
167    let namesrv_addr = env::var("NAMESRV_ADDR").unwrap_or_else(|_| "127.0.0.1:9876".to_string());
168
169    let instance_name = env::var("INSTANCE_NAME").unwrap_or_else(|_| "env-admin".to_string());
170
171    println!("NameServer: {}", namesrv_addr);
172    println!("Instance: {}", instance_name);
173
174    let _admin = AdminBuilder::new()
175        .namesrv_addr(namesrv_addr)
176        .instance_name(instance_name)
177        .build_with_guard()
178        .await?;
179
180    println!("Admin configured from environment");
181
182    Ok(())
183}
184
185/// Example 7: Without RAII (manual cleanup)
186async fn example_manual_cleanup() -> RocketMQResult<()> {
187    println!("\n=== Example 7: Manual Cleanup ===");
188
189    // Use build_and_start() instead of build_with_guard()
190    let mut admin = AdminBuilder::new()
191        .namesrv_addr("127.0.0.1:9876")
192        .build_and_start() // Returns DefaultMQAdminExt directly
193        .await?;
194
195    // Use admin...
196    println!("Admin started");
197
198    // Manual shutdown required
199    admin.shutdown().await;
200    println!("Manually shut down");
201
202    Ok(())
203}
Source

pub fn instance_name(self, name: impl Into<String>) -> Self

Set custom instance name

If not set, defaults to "tools-{timestamp}"

Examples found in repository?
examples/admin_builder_pattern.rs (line 52)
47async fn example_builder() -> RocketMQResult<()> {
48    println!("\n=== Example 2: Builder Pattern ===");
49
50    let admin = AdminBuilder::new()
51        .namesrv_addr("127.0.0.1:9876")
52        .instance_name("example-admin")
53        .timeout_millis(5000)
54        .build_with_guard()
55        .await?;
56
57    // Get topic route info
58    let route = admin.examine_topic_route_info("TestTopic".into()).await?;
59
60    if let Some(route_data) = route {
61        println!("Queue data count: {}", route_data.queue_datas.len());
62        println!("Broker data count: {}", route_data.broker_datas.len());
63    } else {
64        println!("No route data found for TestTopic");
65    }
66
67    Ok(())
68}
69
70/// Example 3: Multiple NameServers with fallback
71async fn example_multiple_namesrv() -> RocketMQResult<()> {
72    println!("\n=== Example 3: Multiple NameServers ===");
73
74    // Try primary NameServers
75    let result = AdminBuilder::new()
76        .namesrv_addr("127.0.0.1:9876;127.0.0.1:9877")
77        .build_with_guard()
78        .await;
79
80    let _admin = match result {
81        Ok(admin) => {
82            println!("Connected to primary NameServer");
83            admin
84        }
85        Err(e) => {
86            eprintln!("Primary NameServer failed: {e}");
87            eprintln!("Falling back to backup...");
88
89            // Fallback to backup
90            AdminBuilder::new()
91                .namesrv_addr("127.0.0.1:9878")
92                .build_with_guard()
93                .await?
94        }
95    };
96
97    println!("Admin client ready");
98
99    Ok(())
100}
101
102/// Example 4: Early return with automatic cleanup
103async fn example_early_return(topic: &str) -> RocketMQResult<()> {
104    println!("\n=== Example 4: Early Return ===");
105
106    let admin = AdminBuilder::new()
107        .namesrv_addr("127.0.0.1:9876")
108        .build_with_guard()
109        .await?;
110
111    // Get topic route
112    let route = admin.examine_topic_route_info(topic.into()).await?;
113
114    // Early return if no route data - admin still cleaned up!
115    let Some(route_data) = route else {
116        println!("Topic '{}' not found, exiting early", topic);
117        return Ok(());
118    };
119
120    // Early return if no queues - admin still cleaned up!
121    if route_data.queue_datas.is_empty() {
122        println!("Topic '{}' has no queues, exiting early", topic);
123        return Ok(());
124    }
125
126    println!("Topic '{}' has {} queues", topic, route_data.queue_datas.len());
127
128    // Process queues...
129    for queue in &route_data.queue_datas {
130        println!(
131            "  Broker: {}, ReadQueueNums: {}, WriteQueueNums: {}",
132            queue.broker_name, queue.read_queue_nums, queue.write_queue_nums
133        );
134    }
135
136    Ok(())
137}
138
139/// Example 5: Explicit shutdown for logging
140async fn example_explicit_shutdown() -> RocketMQResult<()> {
141    println!("\n=== Example 5: Explicit Shutdown ===");
142
143    let admin = AdminBuilder::new()
144        .namesrv_addr("127.0.0.1:9876")
145        .instance_name("explicit-shutdown-example")
146        .build_with_guard()
147        .await?;
148
149    // Use admin...
150    println!("Admin client started successfully");
151
152    // Explicit shutdown with logging
153    println!("Shutting down admin client...");
154    admin.shutdown().await;
155    println!("Shutdown complete");
156
157    Ok(())
158}
159
160/// Example 6: Dynamic configuration from environment
161async fn example_from_environment() -> RocketMQResult<()> {
162    println!("\n=== Example 6: Environment Configuration ===");
163
164    use std::env;
165
166    // Read from environment with defaults
167    let namesrv_addr = env::var("NAMESRV_ADDR").unwrap_or_else(|_| "127.0.0.1:9876".to_string());
168
169    let instance_name = env::var("INSTANCE_NAME").unwrap_or_else(|_| "env-admin".to_string());
170
171    println!("NameServer: {}", namesrv_addr);
172    println!("Instance: {}", instance_name);
173
174    let _admin = AdminBuilder::new()
175        .namesrv_addr(namesrv_addr)
176        .instance_name(instance_name)
177        .build_with_guard()
178        .await?;
179
180    println!("Admin configured from environment");
181
182    Ok(())
183}
Source

pub fn timeout_millis(self, timeout: u64) -> Self

Set timeout in milliseconds

Examples found in repository?
examples/admin_builder_pattern.rs (line 53)
47async fn example_builder() -> RocketMQResult<()> {
48    println!("\n=== Example 2: Builder Pattern ===");
49
50    let admin = AdminBuilder::new()
51        .namesrv_addr("127.0.0.1:9876")
52        .instance_name("example-admin")
53        .timeout_millis(5000)
54        .build_with_guard()
55        .await?;
56
57    // Get topic route info
58    let route = admin.examine_topic_route_info("TestTopic".into()).await?;
59
60    if let Some(route_data) = route {
61        println!("Queue data count: {}", route_data.queue_datas.len());
62        println!("Broker data count: {}", route_data.broker_datas.len());
63    } else {
64        println!("No route data found for TestTopic");
65    }
66
67    Ok(())
68}
Source

pub fn unit_name(self, name: impl Into<String>) -> Self

Set unit name for namespace isolation

Source

pub async fn build_and_start(self) -> RocketMQResult<DefaultMQAdminExt>

Build and start the admin client

This will:

  1. Create a new DefaultMQAdminExt instance
  2. Apply all configuration
  3. Start the client (establish connections)
§Errors

Returns error if:

  • NameServer address is invalid
  • Connection cannot be established
  • Network I/O fails
Examples found in repository?
examples/admin_builder_pattern.rs (line 192)
186async fn example_manual_cleanup() -> RocketMQResult<()> {
187    println!("\n=== Example 7: Manual Cleanup ===");
188
189    // Use build_and_start() instead of build_with_guard()
190    let mut admin = AdminBuilder::new()
191        .namesrv_addr("127.0.0.1:9876")
192        .build_and_start() // Returns DefaultMQAdminExt directly
193        .await?;
194
195    // Use admin...
196    println!("Admin started");
197
198    // Manual shutdown required
199    admin.shutdown().await;
200    println!("Manually shut down");
201
202    Ok(())
203}
Source

pub async fn build_with_guard(self) -> RocketMQResult<AdminGuard>

Build the admin client with RAII auto-cleanup

Returns an AdminGuard that automatically calls shutdown when dropped.

§Examples
{
    let admin = AdminBuilder::new()
        .namesrv_addr("127.0.0.1:9876")
        .build_with_guard()
        .await?;

    // Use admin...
    let clusters = TopicService::get_topic_cluster_list(&admin, "MyTopic").await?;
} // admin automatically cleaned up here
Examples found in repository?
examples/admin_builder_pattern.rs (line 54)
47async fn example_builder() -> RocketMQResult<()> {
48    println!("\n=== Example 2: Builder Pattern ===");
49
50    let admin = AdminBuilder::new()
51        .namesrv_addr("127.0.0.1:9876")
52        .instance_name("example-admin")
53        .timeout_millis(5000)
54        .build_with_guard()
55        .await?;
56
57    // Get topic route info
58    let route = admin.examine_topic_route_info("TestTopic".into()).await?;
59
60    if let Some(route_data) = route {
61        println!("Queue data count: {}", route_data.queue_datas.len());
62        println!("Broker data count: {}", route_data.broker_datas.len());
63    } else {
64        println!("No route data found for TestTopic");
65    }
66
67    Ok(())
68}
69
70/// Example 3: Multiple NameServers with fallback
71async fn example_multiple_namesrv() -> RocketMQResult<()> {
72    println!("\n=== Example 3: Multiple NameServers ===");
73
74    // Try primary NameServers
75    let result = AdminBuilder::new()
76        .namesrv_addr("127.0.0.1:9876;127.0.0.1:9877")
77        .build_with_guard()
78        .await;
79
80    let _admin = match result {
81        Ok(admin) => {
82            println!("Connected to primary NameServer");
83            admin
84        }
85        Err(e) => {
86            eprintln!("Primary NameServer failed: {e}");
87            eprintln!("Falling back to backup...");
88
89            // Fallback to backup
90            AdminBuilder::new()
91                .namesrv_addr("127.0.0.1:9878")
92                .build_with_guard()
93                .await?
94        }
95    };
96
97    println!("Admin client ready");
98
99    Ok(())
100}
101
102/// Example 4: Early return with automatic cleanup
103async fn example_early_return(topic: &str) -> RocketMQResult<()> {
104    println!("\n=== Example 4: Early Return ===");
105
106    let admin = AdminBuilder::new()
107        .namesrv_addr("127.0.0.1:9876")
108        .build_with_guard()
109        .await?;
110
111    // Get topic route
112    let route = admin.examine_topic_route_info(topic.into()).await?;
113
114    // Early return if no route data - admin still cleaned up!
115    let Some(route_data) = route else {
116        println!("Topic '{}' not found, exiting early", topic);
117        return Ok(());
118    };
119
120    // Early return if no queues - admin still cleaned up!
121    if route_data.queue_datas.is_empty() {
122        println!("Topic '{}' has no queues, exiting early", topic);
123        return Ok(());
124    }
125
126    println!("Topic '{}' has {} queues", topic, route_data.queue_datas.len());
127
128    // Process queues...
129    for queue in &route_data.queue_datas {
130        println!(
131            "  Broker: {}, ReadQueueNums: {}, WriteQueueNums: {}",
132            queue.broker_name, queue.read_queue_nums, queue.write_queue_nums
133        );
134    }
135
136    Ok(())
137}
138
139/// Example 5: Explicit shutdown for logging
140async fn example_explicit_shutdown() -> RocketMQResult<()> {
141    println!("\n=== Example 5: Explicit Shutdown ===");
142
143    let admin = AdminBuilder::new()
144        .namesrv_addr("127.0.0.1:9876")
145        .instance_name("explicit-shutdown-example")
146        .build_with_guard()
147        .await?;
148
149    // Use admin...
150    println!("Admin client started successfully");
151
152    // Explicit shutdown with logging
153    println!("Shutting down admin client...");
154    admin.shutdown().await;
155    println!("Shutdown complete");
156
157    Ok(())
158}
159
160/// Example 6: Dynamic configuration from environment
161async fn example_from_environment() -> RocketMQResult<()> {
162    println!("\n=== Example 6: Environment Configuration ===");
163
164    use std::env;
165
166    // Read from environment with defaults
167    let namesrv_addr = env::var("NAMESRV_ADDR").unwrap_or_else(|_| "127.0.0.1:9876".to_string());
168
169    let instance_name = env::var("INSTANCE_NAME").unwrap_or_else(|_| "env-admin".to_string());
170
171    println!("NameServer: {}", namesrv_addr);
172    println!("Instance: {}", instance_name);
173
174    let _admin = AdminBuilder::new()
175        .namesrv_addr(namesrv_addr)
176        .instance_name(instance_name)
177        .build_with_guard()
178        .await?;
179
180    println!("Admin configured from environment");
181
182    Ok(())
183}

Trait Implementations§

Source§

impl Clone for AdminBuilder

Source§

fn clone(&self) -> AdminBuilder

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for AdminBuilder

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for AdminBuilder

Source§

fn default() -> AdminBuilder

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> Conv for T

Source§

fn conv<T>(self) -> T
where Self: Into<T>,

Converts self into T using Into<T>. Read more
Source§

impl<T> FmtForward for T

Source§

fn fmt_binary(self) -> FmtBinary<Self>
where Self: Binary,

Causes self to use its Binary implementation when Debug-formatted.
Source§

fn fmt_display(self) -> FmtDisplay<Self>
where Self: Display,

Causes self to use its Display implementation when Debug-formatted.
Source§

fn fmt_lower_exp(self) -> FmtLowerExp<Self>
where Self: LowerExp,

Causes self to use its LowerExp implementation when Debug-formatted.
Source§

fn fmt_lower_hex(self) -> FmtLowerHex<Self>
where Self: LowerHex,

Causes self to use its LowerHex implementation when Debug-formatted.
Source§

fn fmt_octal(self) -> FmtOctal<Self>
where Self: Octal,

Causes self to use its Octal implementation when Debug-formatted.
Source§

fn fmt_pointer(self) -> FmtPointer<Self>
where Self: Pointer,

Causes self to use its Pointer implementation when Debug-formatted.
Source§

fn fmt_upper_exp(self) -> FmtUpperExp<Self>
where Self: UpperExp,

Causes self to use its UpperExp implementation when Debug-formatted.
Source§

fn fmt_upper_hex(self) -> FmtUpperHex<Self>
where Self: UpperHex,

Causes self to use its UpperHex implementation when Debug-formatted.
Source§

fn fmt_list(self) -> FmtList<Self>
where &'a Self: for<'a> IntoIterator,

Formats each item in a sequence. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FutureExt for T

Source§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
Source§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Pipe for T
where T: ?Sized,

Source§

fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> R
where Self: Sized,

Pipes by value. This is generally the method you want to use. Read more
Source§

fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> R
where R: 'a,

Borrows self and passes that borrow into the pipe function. Read more
Source§

fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> R
where R: 'a,

Mutably borrows self and passes that borrow into the pipe function. Read more
Source§

fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
where Self: Borrow<B>, B: 'a + ?Sized, R: 'a,

Borrows self, then passes self.borrow() into the pipe function. Read more
Source§

fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
where Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more
Source§

fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
where Self: AsRef<U>, U: 'a + ?Sized, R: 'a,

Borrows 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
where Self: AsMut<U>, U: 'a + ?Sized, R: 'a,

Mutably borrows 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
where Self: Deref<Target = T>, T: 'a + ?Sized, R: 'a,

Borrows self, then passes self.deref() into the pipe function.
Source§

fn pipe_deref_mut<'a, T, R>( &'a mut self, func: impl FnOnce(&'a mut T) -> R, ) -> R
where Self: DerefMut<Target = T> + Deref, T: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.deref_mut() into the pipe function.
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> Tap for T

Source§

fn tap(self, func: impl FnOnce(&Self)) -> Self

Immutable access to a value. Read more
Source§

fn tap_mut(self, func: impl FnOnce(&mut Self)) -> Self

Mutable access to a value. Read more
Source§

fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Immutable access to the Borrow<B> of a value. Read more
Source§

fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Mutable access to the BorrowMut<B> of a value. Read more
Source§

fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Immutable access to the AsRef<R> view of a value. Read more
Source§

fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Mutable access to the AsMut<R> view of a value. Read more
Source§

fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Immutable access to the Deref::Target of a value. Read more
Source§

fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Mutable access to the Deref::Target of a value. Read more
Source§

fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self

Calls .tap() only in debug builds, and is erased in release builds.
Source§

fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self

Calls .tap_mut() only in debug builds, and is erased in release builds.
Source§

fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Calls .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
where Self: BorrowMut<B>, B: ?Sized,

Calls .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
where Self: AsRef<R>, R: ?Sized,

Calls .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
where Self: AsMut<R>, R: ?Sized,

Calls .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
where Self: Deref<Target = T>, T: ?Sized,

Calls .tap_deref() only in debug builds, and is erased in release builds.
Source§

fn tap_deref_mut_dbg<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Calls .tap_deref_mut() only in debug builds, and is erased in release builds.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> TryConv for T

Source§

fn try_conv<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,

Attempts to convert self into T using TryInto<T>. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more