# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/6yaa6sa
思考 Rust:爲何摒棄繼承?從函數與方法的區別談起**
在 Rust 中,函數和方法是編寫代碼的基礎,它們在某些方面是類似的,但在本質上有重要的不同。在本文中,我們將探討這些區別,並解釋方法調用的本質及其與普通函數調用的聯繫,以及對 Rust 面向對象的思考。函數 Vs 方法--------首先,定義一個函數和一個方法:函數(Function)函數是一個獨立的代碼塊,它可以接受參數、進行計算並返回一個值。函數不綁定到任何對象或實例。 例子:fn add ⌘ Read more