aya.txt 946 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508
  1. pub mod aya
  2. pub use aya::Btf
  3. pub use aya::BtfError
  4. pub use aya::Endianness
  5. pub use aya::PinningType
  6. pub use aya::bpf_map_def
  7. pub mod aya::maps
  8. pub mod aya::maps::array
  9. pub struct aya::maps::array::Array<T, V: aya::Pod>
  10. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  11. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  12. pub fn aya::maps::array::Array<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<V, aya::maps::MapError>> + '_
  13. pub fn aya::maps::array::Array<T, V>::len(&self) -> u32
  14. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  15. pub fn aya::maps::array::Array<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  16. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  17. pub fn aya::maps::array::Array<T, V>::set(&mut self, index: u32, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  18. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V>
  19. pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  20. pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  21. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V>
  22. pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  23. pub fn aya::maps::array::Array<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  24. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, V> for aya::maps::array::Array<T, V>
  25. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32) -> core::result::Result<V, aya::maps::MapError>
  26. pub fn aya::maps::array::Array<T, V>::map(&self) -> &aya::maps::MapData
  27. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::array::Array<aya::maps::MapData, V>
  28. pub type aya::maps::array::Array<aya::maps::MapData, V>::Error = aya::maps::MapError
  29. pub fn aya::maps::array::Array<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  30. impl<T, V> core::marker::Freeze for aya::maps::array::Array<T, V> where T: core::marker::Freeze
  31. impl<T, V> core::marker::Send for aya::maps::array::Array<T, V> where T: core::marker::Send, V: core::marker::Send
  32. impl<T, V> core::marker::Sync for aya::maps::array::Array<T, V> where T: core::marker::Sync, V: core::marker::Sync
  33. impl<T, V> core::marker::Unpin for aya::maps::array::Array<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  34. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  35. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  36. impl<T, U> core::convert::Into<U> for aya::maps::array::Array<T, V> where U: core::convert::From<T>
  37. pub fn aya::maps::array::Array<T, V>::into(self) -> U
  38. impl<T, U> core::convert::TryFrom<U> for aya::maps::array::Array<T, V> where U: core::convert::Into<T>
  39. pub type aya::maps::array::Array<T, V>::Error = core::convert::Infallible
  40. pub fn aya::maps::array::Array<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  41. impl<T, U> core::convert::TryInto<U> for aya::maps::array::Array<T, V> where U: core::convert::TryFrom<T>
  42. pub type aya::maps::array::Array<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  43. pub fn aya::maps::array::Array<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  44. impl<T> core::any::Any for aya::maps::array::Array<T, V> where T: 'static + ?core::marker::Sized
  45. pub fn aya::maps::array::Array<T, V>::type_id(&self) -> core::any::TypeId
  46. impl<T> core::borrow::Borrow<T> for aya::maps::array::Array<T, V> where T: ?core::marker::Sized
  47. pub fn aya::maps::array::Array<T, V>::borrow(&self) -> &T
  48. impl<T> core::borrow::BorrowMut<T> for aya::maps::array::Array<T, V> where T: ?core::marker::Sized
  49. pub fn aya::maps::array::Array<T, V>::borrow_mut(&mut self) -> &mut T
  50. impl<T> core::convert::From<T> for aya::maps::array::Array<T, V>
  51. pub fn aya::maps::array::Array<T, V>::from(t: T) -> T
  52. pub struct aya::maps::array::PerCpuArray<T, V: aya::Pod>
  53. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  54. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  55. pub fn aya::maps::PerCpuArray<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>> + '_
  56. pub fn aya::maps::PerCpuArray<T, V>::len(&self) -> u32
  57. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  58. pub fn aya::maps::PerCpuArray<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  59. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  60. pub fn aya::maps::PerCpuArray<T, V>::set(&mut self, index: u32, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  61. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V>
  62. pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  63. pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  64. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>
  65. pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  66. pub fn aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  67. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  68. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  69. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  70. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::PerCpuArray<aya::maps::MapData, V>
  71. pub type aya::maps::PerCpuArray<aya::maps::MapData, V>::Error = aya::maps::MapError
  72. pub fn aya::maps::PerCpuArray<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  73. impl<T, V> core::marker::Freeze for aya::maps::PerCpuArray<T, V> where T: core::marker::Freeze
  74. impl<T, V> core::marker::Send for aya::maps::PerCpuArray<T, V> where T: core::marker::Send, V: core::marker::Send
  75. impl<T, V> core::marker::Sync for aya::maps::PerCpuArray<T, V> where T: core::marker::Sync, V: core::marker::Sync
  76. impl<T, V> core::marker::Unpin for aya::maps::PerCpuArray<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  77. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  78. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  79. impl<T, U> core::convert::Into<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::From<T>
  80. pub fn aya::maps::PerCpuArray<T, V>::into(self) -> U
  81. impl<T, U> core::convert::TryFrom<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::Into<T>
  82. pub type aya::maps::PerCpuArray<T, V>::Error = core::convert::Infallible
  83. pub fn aya::maps::PerCpuArray<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  84. impl<T, U> core::convert::TryInto<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::TryFrom<T>
  85. pub type aya::maps::PerCpuArray<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  86. pub fn aya::maps::PerCpuArray<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  87. impl<T> core::any::Any for aya::maps::PerCpuArray<T, V> where T: 'static + ?core::marker::Sized
  88. pub fn aya::maps::PerCpuArray<T, V>::type_id(&self) -> core::any::TypeId
  89. impl<T> core::borrow::Borrow<T> for aya::maps::PerCpuArray<T, V> where T: ?core::marker::Sized
  90. pub fn aya::maps::PerCpuArray<T, V>::borrow(&self) -> &T
  91. impl<T> core::borrow::BorrowMut<T> for aya::maps::PerCpuArray<T, V> where T: ?core::marker::Sized
  92. pub fn aya::maps::PerCpuArray<T, V>::borrow_mut(&mut self) -> &mut T
  93. impl<T> core::convert::From<T> for aya::maps::PerCpuArray<T, V>
  94. pub fn aya::maps::PerCpuArray<T, V>::from(t: T) -> T
  95. pub struct aya::maps::array::ProgramArray<T>
  96. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  97. pub fn aya::maps::ProgramArray<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  98. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  99. pub fn aya::maps::ProgramArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  100. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::ProgramArray<T>
  101. pub fn aya::maps::ProgramArray<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  102. pub fn aya::maps::ProgramArray<T>::set(&mut self, index: u32, program: &aya::programs::ProgramFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  103. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ProgramArray<aya::maps::MapData>
  104. pub type aya::maps::ProgramArray<aya::maps::MapData>::Error = aya::maps::MapError
  105. pub fn aya::maps::ProgramArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  106. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData>
  107. pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  108. pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  109. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData>
  110. pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  111. pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  112. impl<T> core::marker::Freeze for aya::maps::ProgramArray<T> where T: core::marker::Freeze
  113. impl<T> core::marker::Send for aya::maps::ProgramArray<T> where T: core::marker::Send
  114. impl<T> core::marker::Sync for aya::maps::ProgramArray<T> where T: core::marker::Sync
  115. impl<T> core::marker::Unpin for aya::maps::ProgramArray<T> where T: core::marker::Unpin
  116. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  117. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::UnwindSafe
  118. impl<T, U> core::convert::Into<U> for aya::maps::ProgramArray<T> where U: core::convert::From<T>
  119. pub fn aya::maps::ProgramArray<T>::into(self) -> U
  120. impl<T, U> core::convert::TryFrom<U> for aya::maps::ProgramArray<T> where U: core::convert::Into<T>
  121. pub type aya::maps::ProgramArray<T>::Error = core::convert::Infallible
  122. pub fn aya::maps::ProgramArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  123. impl<T, U> core::convert::TryInto<U> for aya::maps::ProgramArray<T> where U: core::convert::TryFrom<T>
  124. pub type aya::maps::ProgramArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  125. pub fn aya::maps::ProgramArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  126. impl<T> core::any::Any for aya::maps::ProgramArray<T> where T: 'static + ?core::marker::Sized
  127. pub fn aya::maps::ProgramArray<T>::type_id(&self) -> core::any::TypeId
  128. impl<T> core::borrow::Borrow<T> for aya::maps::ProgramArray<T> where T: ?core::marker::Sized
  129. pub fn aya::maps::ProgramArray<T>::borrow(&self) -> &T
  130. impl<T> core::borrow::BorrowMut<T> for aya::maps::ProgramArray<T> where T: ?core::marker::Sized
  131. pub fn aya::maps::ProgramArray<T>::borrow_mut(&mut self) -> &mut T
  132. impl<T> core::convert::From<T> for aya::maps::ProgramArray<T>
  133. pub fn aya::maps::ProgramArray<T>::from(t: T) -> T
  134. pub mod aya::maps::bloom_filter
  135. pub struct aya::maps::bloom_filter::BloomFilter<T, V: aya::Pod>
  136. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  137. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::contains(&self, value: &V, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  138. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  139. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  140. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  141. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::insert(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  142. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>
  143. pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  144. pub fn aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  145. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>
  146. pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  147. pub fn aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  148. impl<T: core::fmt::Debug, V: core::fmt::Debug + aya::Pod> core::fmt::Debug for aya::maps::bloom_filter::BloomFilter<T, V>
  149. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  150. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>
  151. pub type aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::Error = aya::maps::MapError
  152. pub fn aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  153. impl<T, V> core::marker::Freeze for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Freeze
  154. impl<T, V> core::marker::Send for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Send, V: core::marker::Send
  155. impl<T, V> core::marker::Sync for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sync, V: core::marker::Sync
  156. impl<T, V> core::marker::Unpin for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  157. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  158. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  159. impl<T, U> core::convert::Into<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::From<T>
  160. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::into(self) -> U
  161. impl<T, U> core::convert::TryFrom<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::Into<T>
  162. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = core::convert::Infallible
  163. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  164. impl<T, U> core::convert::TryInto<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::TryFrom<T>
  165. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  166. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  167. impl<T> core::any::Any for aya::maps::bloom_filter::BloomFilter<T, V> where T: 'static + ?core::marker::Sized
  168. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::type_id(&self) -> core::any::TypeId
  169. impl<T> core::borrow::Borrow<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: ?core::marker::Sized
  170. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow(&self) -> &T
  171. impl<T> core::borrow::BorrowMut<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: ?core::marker::Sized
  172. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow_mut(&mut self) -> &mut T
  173. impl<T> core::convert::From<T> for aya::maps::bloom_filter::BloomFilter<T, V>
  174. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::from(t: T) -> T
  175. pub mod aya::maps::hash_map
  176. pub struct aya::maps::hash_map::HashMap<T, K, V>
  177. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  178. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  179. pub fn aya::maps::hash_map::HashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, V, Self>
  180. pub fn aya::maps::hash_map::HashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  181. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  182. pub fn aya::maps::hash_map::HashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  183. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  184. pub fn aya::maps::hash_map::HashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  185. pub fn aya::maps::hash_map::HashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  186. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>
  187. pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  188. pub fn aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  189. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>
  190. pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  191. pub fn aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  192. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>
  193. pub type aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  194. pub fn aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  195. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, V> for aya::maps::hash_map::HashMap<T, K, V>
  196. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  197. pub fn aya::maps::hash_map::HashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  198. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::hash_map::HashMap<T, K, V>
  199. pub fn aya::maps::hash_map::HashMap<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  200. impl<T, K, V> core::marker::Freeze for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Freeze
  201. impl<T, K, V> core::marker::Send for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  202. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  203. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  204. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  205. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  206. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::From<T>
  207. pub fn aya::maps::hash_map::HashMap<T, K, V>::into(self) -> U
  208. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::Into<T>
  209. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = core::convert::Infallible
  210. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  211. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::TryFrom<T>
  212. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  213. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  214. impl<T> core::any::Any for aya::maps::hash_map::HashMap<T, K, V> where T: 'static + ?core::marker::Sized
  215. pub fn aya::maps::hash_map::HashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  216. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::HashMap<T, K, V> where T: ?core::marker::Sized
  217. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow(&self) -> &T
  218. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::HashMap<T, K, V> where T: ?core::marker::Sized
  219. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  220. impl<T> core::convert::From<T> for aya::maps::hash_map::HashMap<T, K, V>
  221. pub fn aya::maps::hash_map::HashMap<T, K, V>::from(t: T) -> T
  222. pub struct aya::maps::hash_map::PerCpuHashMap<T, K: aya::Pod, V: aya::Pod>
  223. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  224. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  225. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, aya::maps::PerCpuValues<V>, Self>
  226. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  227. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  228. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  229. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  230. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  231. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  232. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>
  233. pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  234. pub fn aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  235. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>
  236. pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  237. pub fn aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  238. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>
  239. pub type aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  240. pub fn aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  241. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  242. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  243. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  244. impl<T, K, V> core::marker::Freeze for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Freeze
  245. impl<T, K, V> core::marker::Send for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  246. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  247. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  248. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  249. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  250. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::From<T>
  251. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::into(self) -> U
  252. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::Into<T>
  253. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = core::convert::Infallible
  254. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  255. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::TryFrom<T>
  256. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  257. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  258. impl<T> core::any::Any for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: 'static + ?core::marker::Sized
  259. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  260. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: ?core::marker::Sized
  261. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow(&self) -> &T
  262. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: ?core::marker::Sized
  263. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  264. impl<T> core::convert::From<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  265. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::from(t: T) -> T
  266. pub mod aya::maps::lpm_trie
  267. #[repr(C, packed(1))] pub struct aya::maps::lpm_trie::Key<K: aya::Pod>
  268. impl<K: aya::Pod> aya::maps::lpm_trie::Key<K>
  269. pub fn aya::maps::lpm_trie::Key<K>::data(&self) -> K
  270. pub fn aya::maps::lpm_trie::Key<K>::new(prefix_len: u32, data: K) -> Self
  271. pub fn aya::maps::lpm_trie::Key<K>::prefix_len(&self) -> u32
  272. impl<K: aya::Pod> aya::Pod for aya::maps::lpm_trie::Key<K>
  273. impl<K: aya::Pod> core::clone::Clone for aya::maps::lpm_trie::Key<K>
  274. pub fn aya::maps::lpm_trie::Key<K>::clone(&self) -> Self
  275. impl<K: aya::Pod> core::marker::Copy for aya::maps::lpm_trie::Key<K>
  276. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  277. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  278. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  279. impl<K> core::marker::Freeze for aya::maps::lpm_trie::Key<K> where K: core::marker::Freeze
  280. impl<K> core::marker::Send for aya::maps::lpm_trie::Key<K> where K: core::marker::Send
  281. impl<K> core::marker::Sync for aya::maps::lpm_trie::Key<K> where K: core::marker::Sync
  282. impl<K> core::marker::Unpin for aya::maps::lpm_trie::Key<K> where K: core::marker::Unpin
  283. impl<K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::Key<K> where K: core::panic::unwind_safe::RefUnwindSafe
  284. impl<K> core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::Key<K> where K: core::panic::unwind_safe::UnwindSafe
  285. impl<T, U> core::convert::Into<U> for aya::maps::lpm_trie::Key<K> where U: core::convert::From<T>
  286. pub fn aya::maps::lpm_trie::Key<K>::into(self) -> U
  287. impl<T, U> core::convert::TryFrom<U> for aya::maps::lpm_trie::Key<K> where U: core::convert::Into<T>
  288. pub type aya::maps::lpm_trie::Key<K>::Error = core::convert::Infallible
  289. pub fn aya::maps::lpm_trie::Key<K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  290. impl<T, U> core::convert::TryInto<U> for aya::maps::lpm_trie::Key<K> where U: core::convert::TryFrom<T>
  291. pub type aya::maps::lpm_trie::Key<K>::Error = <U as core::convert::TryFrom<T>>::Error
  292. pub fn aya::maps::lpm_trie::Key<K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  293. impl<T> alloc::borrow::ToOwned for aya::maps::lpm_trie::Key<K> where T: core::clone::Clone
  294. pub type aya::maps::lpm_trie::Key<K>::Owned = T
  295. pub fn aya::maps::lpm_trie::Key<K>::clone_into(&self, target: &mut T)
  296. pub fn aya::maps::lpm_trie::Key<K>::to_owned(&self) -> T
  297. impl<T> core::any::Any for aya::maps::lpm_trie::Key<K> where T: 'static + ?core::marker::Sized
  298. pub fn aya::maps::lpm_trie::Key<K>::type_id(&self) -> core::any::TypeId
  299. impl<T> core::borrow::Borrow<T> for aya::maps::lpm_trie::Key<K> where T: ?core::marker::Sized
  300. pub fn aya::maps::lpm_trie::Key<K>::borrow(&self) -> &T
  301. impl<T> core::borrow::BorrowMut<T> for aya::maps::lpm_trie::Key<K> where T: ?core::marker::Sized
  302. pub fn aya::maps::lpm_trie::Key<K>::borrow_mut(&mut self) -> &mut T
  303. impl<T> core::clone::CloneToUninit for aya::maps::lpm_trie::Key<K> where T: core::clone::Clone
  304. pub unsafe fn aya::maps::lpm_trie::Key<K>::clone_to_uninit(&self, dest: *mut u8)
  305. impl<T> core::convert::From<T> for aya::maps::lpm_trie::Key<K>
  306. pub fn aya::maps::lpm_trie::Key<K>::from(t: T) -> T
  307. pub struct aya::maps::lpm_trie::LpmTrie<T, K, V>
  308. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  309. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  310. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, aya::maps::lpm_trie::Key<K>, V, Self>
  311. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, aya::maps::lpm_trie::Key<K>>
  312. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  313. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  314. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  315. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::insert(&mut self, key: &aya::maps::lpm_trie::Key<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  316. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::remove(&mut self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<(), aya::maps::MapError>
  317. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>
  318. pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  319. pub fn aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  320. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>
  321. pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  322. pub fn aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  323. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>
  324. pub type aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  325. pub fn aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  326. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  327. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  328. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  329. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::lpm_trie::LpmTrie<T, K, V>
  330. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  331. impl<T, K, V> core::marker::Freeze for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Freeze
  332. impl<T, K, V> core::marker::Send for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  333. impl<T, K, V> core::marker::Sync for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  334. impl<T, K, V> core::marker::Unpin for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  335. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  336. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  337. impl<T, U> core::convert::Into<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::From<T>
  338. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::into(self) -> U
  339. impl<T, U> core::convert::TryFrom<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::Into<T>
  340. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = core::convert::Infallible
  341. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  342. impl<T, U> core::convert::TryInto<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::TryFrom<T>
  343. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  344. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  345. impl<T> core::any::Any for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: 'static + ?core::marker::Sized
  346. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::type_id(&self) -> core::any::TypeId
  347. impl<T> core::borrow::Borrow<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: ?core::marker::Sized
  348. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow(&self) -> &T
  349. impl<T> core::borrow::BorrowMut<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: ?core::marker::Sized
  350. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow_mut(&mut self) -> &mut T
  351. impl<T> core::convert::From<T> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  352. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::from(t: T) -> T
  353. pub mod aya::maps::perf
  354. pub enum aya::maps::perf::PerfBufferError
  355. pub aya::maps::perf::PerfBufferError::IOError(std::io::error::Error)
  356. pub aya::maps::perf::PerfBufferError::InvalidPageCount
  357. pub aya::maps::perf::PerfBufferError::InvalidPageCount::page_count: usize
  358. pub aya::maps::perf::PerfBufferError::MMapError
  359. pub aya::maps::perf::PerfBufferError::MMapError::io_error: std::io::error::Error
  360. pub aya::maps::perf::PerfBufferError::MoreSpaceNeeded
  361. pub aya::maps::perf::PerfBufferError::MoreSpaceNeeded::size: usize
  362. pub aya::maps::perf::PerfBufferError::NoBuffers
  363. pub aya::maps::perf::PerfBufferError::OpenError
  364. pub aya::maps::perf::PerfBufferError::OpenError::io_error: std::io::error::Error
  365. pub aya::maps::perf::PerfBufferError::PerfEventEnableError
  366. pub aya::maps::perf::PerfBufferError::PerfEventEnableError::io_error: std::io::error::Error
  367. impl core::convert::From<std::io::error::Error> for aya::maps::perf::PerfBufferError
  368. pub fn aya::maps::perf::PerfBufferError::from(source: std::io::error::Error) -> Self
  369. impl core::error::Error for aya::maps::perf::PerfBufferError
  370. pub fn aya::maps::perf::PerfBufferError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  371. impl core::fmt::Debug for aya::maps::perf::PerfBufferError
  372. pub fn aya::maps::perf::PerfBufferError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  373. impl core::fmt::Display for aya::maps::perf::PerfBufferError
  374. pub fn aya::maps::perf::PerfBufferError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  375. impl core::marker::Freeze for aya::maps::perf::PerfBufferError
  376. impl core::marker::Send for aya::maps::perf::PerfBufferError
  377. impl core::marker::Sync for aya::maps::perf::PerfBufferError
  378. impl core::marker::Unpin for aya::maps::perf::PerfBufferError
  379. impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfBufferError
  380. impl !core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfBufferError
  381. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfBufferError where U: core::convert::From<T>
  382. pub fn aya::maps::perf::PerfBufferError::into(self) -> U
  383. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfBufferError where U: core::convert::Into<T>
  384. pub type aya::maps::perf::PerfBufferError::Error = core::convert::Infallible
  385. pub fn aya::maps::perf::PerfBufferError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  386. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfBufferError where U: core::convert::TryFrom<T>
  387. pub type aya::maps::perf::PerfBufferError::Error = <U as core::convert::TryFrom<T>>::Error
  388. pub fn aya::maps::perf::PerfBufferError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  389. impl<T> alloc::string::ToString for aya::maps::perf::PerfBufferError where T: core::fmt::Display + ?core::marker::Sized
  390. pub fn aya::maps::perf::PerfBufferError::to_string(&self) -> alloc::string::String
  391. impl<T> core::any::Any for aya::maps::perf::PerfBufferError where T: 'static + ?core::marker::Sized
  392. pub fn aya::maps::perf::PerfBufferError::type_id(&self) -> core::any::TypeId
  393. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfBufferError where T: ?core::marker::Sized
  394. pub fn aya::maps::perf::PerfBufferError::borrow(&self) -> &T
  395. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfBufferError where T: ?core::marker::Sized
  396. pub fn aya::maps::perf::PerfBufferError::borrow_mut(&mut self) -> &mut T
  397. impl<T> core::convert::From<T> for aya::maps::perf::PerfBufferError
  398. pub fn aya::maps::perf::PerfBufferError::from(t: T) -> T
  399. pub struct aya::maps::perf::AsyncPerfEventArray<T>
  400. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::AsyncPerfEventArray<T>
  401. pub fn aya::maps::perf::AsyncPerfEventArray<T>::open(&mut self, index: u32, page_count: core::option::Option<usize>) -> core::result::Result<aya::maps::perf::AsyncPerfEventArrayBuffer<T>, aya::maps::perf::PerfBufferError>
  402. pub fn aya::maps::perf::AsyncPerfEventArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  403. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>
  404. pub type aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  405. pub fn aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  406. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>
  407. pub type aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  408. pub fn aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  409. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>
  410. pub type aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  411. pub fn aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  412. impl<T> core::marker::Freeze for aya::maps::perf::AsyncPerfEventArray<T>
  413. impl<T> core::marker::Send for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  414. impl<T> core::marker::Sync for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  415. impl<T> core::marker::Unpin for aya::maps::perf::AsyncPerfEventArray<T>
  416. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  417. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  418. impl<T, U> core::convert::Into<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::From<T>
  419. pub fn aya::maps::perf::AsyncPerfEventArray<T>::into(self) -> U
  420. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::Into<T>
  421. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = core::convert::Infallible
  422. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  423. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::TryFrom<T>
  424. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  425. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  426. impl<T> core::any::Any for aya::maps::perf::AsyncPerfEventArray<T> where T: 'static + ?core::marker::Sized
  427. pub fn aya::maps::perf::AsyncPerfEventArray<T>::type_id(&self) -> core::any::TypeId
  428. impl<T> core::borrow::Borrow<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: ?core::marker::Sized
  429. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow(&self) -> &T
  430. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: ?core::marker::Sized
  431. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  432. impl<T> core::convert::From<T> for aya::maps::perf::AsyncPerfEventArray<T>
  433. pub fn aya::maps::perf::AsyncPerfEventArray<T>::from(t: T) -> T
  434. pub struct aya::maps::perf::AsyncPerfEventArrayBuffer<T: core::borrow::BorrowMut<aya::maps::MapData>>
  435. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  436. pub async fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::read_events(&mut self, buffers: &mut [bytes::bytes_mut::BytesMut]) -> core::result::Result<aya::maps::perf::Events, aya::maps::perf::PerfBufferError>
  437. impl<T> core::marker::Freeze for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  438. impl<T> core::marker::Send for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: core::marker::Sync + core::marker::Send
  439. impl<T> core::marker::Sync for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: core::marker::Sync + core::marker::Send
  440. impl<T> core::marker::Unpin for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  441. impl<T> !core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  442. impl<T> !core::panic::unwind_safe::UnwindSafe for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  443. impl<T, U> core::convert::Into<U> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where U: core::convert::From<T>
  444. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::into(self) -> U
  445. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where U: core::convert::Into<T>
  446. pub type aya::maps::perf::AsyncPerfEventArrayBuffer<T>::Error = core::convert::Infallible
  447. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  448. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where U: core::convert::TryFrom<T>
  449. pub type aya::maps::perf::AsyncPerfEventArrayBuffer<T>::Error = <U as core::convert::TryFrom<T>>::Error
  450. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  451. impl<T> core::any::Any for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: 'static + ?core::marker::Sized
  452. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::type_id(&self) -> core::any::TypeId
  453. impl<T> core::borrow::Borrow<T> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: ?core::marker::Sized
  454. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::borrow(&self) -> &T
  455. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: ?core::marker::Sized
  456. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::borrow_mut(&mut self) -> &mut T
  457. impl<T> core::convert::From<T> for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  458. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::from(t: T) -> T
  459. pub struct aya::maps::perf::Events
  460. pub aya::maps::perf::Events::lost: usize
  461. pub aya::maps::perf::Events::read: usize
  462. impl core::cmp::Eq for aya::maps::perf::Events
  463. impl core::cmp::PartialEq for aya::maps::perf::Events
  464. pub fn aya::maps::perf::Events::eq(&self, other: &aya::maps::perf::Events) -> bool
  465. impl core::fmt::Debug for aya::maps::perf::Events
  466. pub fn aya::maps::perf::Events::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  467. impl core::marker::StructuralPartialEq for aya::maps::perf::Events
  468. impl core::marker::Freeze for aya::maps::perf::Events
  469. impl core::marker::Send for aya::maps::perf::Events
  470. impl core::marker::Sync for aya::maps::perf::Events
  471. impl core::marker::Unpin for aya::maps::perf::Events
  472. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::Events
  473. impl core::panic::unwind_safe::UnwindSafe for aya::maps::perf::Events
  474. impl<Q, K> equivalent::Equivalent<K> for aya::maps::perf::Events where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  475. pub fn aya::maps::perf::Events::equivalent(&self, key: &K) -> bool
  476. impl<T, U> core::convert::Into<U> for aya::maps::perf::Events where U: core::convert::From<T>
  477. pub fn aya::maps::perf::Events::into(self) -> U
  478. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::Events where U: core::convert::Into<T>
  479. pub type aya::maps::perf::Events::Error = core::convert::Infallible
  480. pub fn aya::maps::perf::Events::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  481. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::Events where U: core::convert::TryFrom<T>
  482. pub type aya::maps::perf::Events::Error = <U as core::convert::TryFrom<T>>::Error
  483. pub fn aya::maps::perf::Events::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  484. impl<T> core::any::Any for aya::maps::perf::Events where T: 'static + ?core::marker::Sized
  485. pub fn aya::maps::perf::Events::type_id(&self) -> core::any::TypeId
  486. impl<T> core::borrow::Borrow<T> for aya::maps::perf::Events where T: ?core::marker::Sized
  487. pub fn aya::maps::perf::Events::borrow(&self) -> &T
  488. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::Events where T: ?core::marker::Sized
  489. pub fn aya::maps::perf::Events::borrow_mut(&mut self) -> &mut T
  490. impl<T> core::convert::From<T> for aya::maps::perf::Events
  491. pub fn aya::maps::perf::Events::from(t: T) -> T
  492. pub struct aya::maps::perf::PerfEventArray<T>
  493. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  494. pub fn aya::maps::perf::PerfEventArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  495. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  496. pub fn aya::maps::perf::PerfEventArray<T>::open(&mut self, index: u32, page_count: core::option::Option<usize>) -> core::result::Result<aya::maps::perf::PerfEventArrayBuffer<T>, aya::maps::perf::PerfBufferError>
  497. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::PerfEventArray<aya::maps::MapData>
  498. pub type aya::maps::perf::PerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  499. pub fn aya::maps::perf::PerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  500. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>
  501. pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  502. pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  503. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>
  504. pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  505. pub fn aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  506. impl<T> core::marker::Freeze for aya::maps::perf::PerfEventArray<T>
  507. impl<T> core::marker::Send for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  508. impl<T> core::marker::Sync for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  509. impl<T> core::marker::Unpin for aya::maps::perf::PerfEventArray<T>
  510. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  511. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  512. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::From<T>
  513. pub fn aya::maps::perf::PerfEventArray<T>::into(self) -> U
  514. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::Into<T>
  515. pub type aya::maps::perf::PerfEventArray<T>::Error = core::convert::Infallible
  516. pub fn aya::maps::perf::PerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  517. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::TryFrom<T>
  518. pub type aya::maps::perf::PerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  519. pub fn aya::maps::perf::PerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  520. impl<T> core::any::Any for aya::maps::perf::PerfEventArray<T> where T: 'static + ?core::marker::Sized
  521. pub fn aya::maps::perf::PerfEventArray<T>::type_id(&self) -> core::any::TypeId
  522. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfEventArray<T> where T: ?core::marker::Sized
  523. pub fn aya::maps::perf::PerfEventArray<T>::borrow(&self) -> &T
  524. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfEventArray<T> where T: ?core::marker::Sized
  525. pub fn aya::maps::perf::PerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  526. impl<T> core::convert::From<T> for aya::maps::perf::PerfEventArray<T>
  527. pub fn aya::maps::perf::PerfEventArray<T>::from(t: T) -> T
  528. pub struct aya::maps::perf::PerfEventArrayBuffer<T>
  529. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::PerfEventArrayBuffer<T>
  530. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::read_events(&mut self, out_bufs: &mut [bytes::bytes_mut::BytesMut]) -> core::result::Result<aya::maps::perf::Events, aya::maps::perf::PerfBufferError>
  531. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::readable(&self) -> bool
  532. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> std::os::fd::owned::AsFd for aya::maps::perf::PerfEventArrayBuffer<T>
  533. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  534. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> std::os::fd::raw::AsRawFd for aya::maps::perf::PerfEventArrayBuffer<T>
  535. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::as_raw_fd(&self) -> std::os::fd::raw::RawFd
  536. impl<T> core::marker::Freeze for aya::maps::perf::PerfEventArrayBuffer<T>
  537. impl<T> core::marker::Send for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::marker::Sync + core::marker::Send
  538. impl<T> core::marker::Sync for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::marker::Sync + core::marker::Send
  539. impl<T> core::marker::Unpin for aya::maps::perf::PerfEventArrayBuffer<T>
  540. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::panic::unwind_safe::RefUnwindSafe
  541. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::panic::unwind_safe::RefUnwindSafe
  542. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfEventArrayBuffer<T> where U: core::convert::From<T>
  543. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::into(self) -> U
  544. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfEventArrayBuffer<T> where U: core::convert::Into<T>
  545. pub type aya::maps::perf::PerfEventArrayBuffer<T>::Error = core::convert::Infallible
  546. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  547. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfEventArrayBuffer<T> where U: core::convert::TryFrom<T>
  548. pub type aya::maps::perf::PerfEventArrayBuffer<T>::Error = <U as core::convert::TryFrom<T>>::Error
  549. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  550. impl<T> core::any::Any for aya::maps::perf::PerfEventArrayBuffer<T> where T: 'static + ?core::marker::Sized
  551. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::type_id(&self) -> core::any::TypeId
  552. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfEventArrayBuffer<T> where T: ?core::marker::Sized
  553. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::borrow(&self) -> &T
  554. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfEventArrayBuffer<T> where T: ?core::marker::Sized
  555. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::borrow_mut(&mut self) -> &mut T
  556. impl<T> core::convert::From<T> for aya::maps::perf::PerfEventArrayBuffer<T>
  557. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::from(t: T) -> T
  558. pub mod aya::maps::queue
  559. pub struct aya::maps::queue::Queue<T, V: aya::Pod>
  560. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  561. pub fn aya::maps::queue::Queue<T, V>::capacity(&self) -> u32
  562. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  563. pub fn aya::maps::queue::Queue<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  564. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  565. pub fn aya::maps::queue::Queue<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  566. pub fn aya::maps::queue::Queue<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  567. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V>
  568. pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  569. pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  570. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>
  571. pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  572. pub fn aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  573. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::queue::Queue<aya::maps::MapData, V>
  574. pub type aya::maps::queue::Queue<aya::maps::MapData, V>::Error = aya::maps::MapError
  575. pub fn aya::maps::queue::Queue<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  576. impl<T, V> core::marker::Freeze for aya::maps::queue::Queue<T, V> where T: core::marker::Freeze
  577. impl<T, V> core::marker::Send for aya::maps::queue::Queue<T, V> where T: core::marker::Send, V: core::marker::Send
  578. impl<T, V> core::marker::Sync for aya::maps::queue::Queue<T, V> where T: core::marker::Sync, V: core::marker::Sync
  579. impl<T, V> core::marker::Unpin for aya::maps::queue::Queue<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  580. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  581. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  582. impl<T, U> core::convert::Into<U> for aya::maps::queue::Queue<T, V> where U: core::convert::From<T>
  583. pub fn aya::maps::queue::Queue<T, V>::into(self) -> U
  584. impl<T, U> core::convert::TryFrom<U> for aya::maps::queue::Queue<T, V> where U: core::convert::Into<T>
  585. pub type aya::maps::queue::Queue<T, V>::Error = core::convert::Infallible
  586. pub fn aya::maps::queue::Queue<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  587. impl<T, U> core::convert::TryInto<U> for aya::maps::queue::Queue<T, V> where U: core::convert::TryFrom<T>
  588. pub type aya::maps::queue::Queue<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  589. pub fn aya::maps::queue::Queue<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  590. impl<T> core::any::Any for aya::maps::queue::Queue<T, V> where T: 'static + ?core::marker::Sized
  591. pub fn aya::maps::queue::Queue<T, V>::type_id(&self) -> core::any::TypeId
  592. impl<T> core::borrow::Borrow<T> for aya::maps::queue::Queue<T, V> where T: ?core::marker::Sized
  593. pub fn aya::maps::queue::Queue<T, V>::borrow(&self) -> &T
  594. impl<T> core::borrow::BorrowMut<T> for aya::maps::queue::Queue<T, V> where T: ?core::marker::Sized
  595. pub fn aya::maps::queue::Queue<T, V>::borrow_mut(&mut self) -> &mut T
  596. impl<T> core::convert::From<T> for aya::maps::queue::Queue<T, V>
  597. pub fn aya::maps::queue::Queue<T, V>::from(t: T) -> T
  598. pub mod aya::maps::ring_buf
  599. pub struct aya::maps::ring_buf::RingBuf<T>
  600. impl<T> aya::maps::ring_buf::RingBuf<T>
  601. pub fn aya::maps::ring_buf::RingBuf<T>::next(&mut self) -> core::option::Option<aya::maps::ring_buf::RingBufItem<'_>>
  602. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ring_buf::RingBuf<aya::maps::MapData>
  603. pub type aya::maps::ring_buf::RingBuf<aya::maps::MapData>::Error = aya::maps::MapError
  604. pub fn aya::maps::ring_buf::RingBuf<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  605. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>
  606. pub type aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::Error = aya::maps::MapError
  607. pub fn aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  608. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>
  609. pub type aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  610. pub fn aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  611. impl<T: core::borrow::Borrow<aya::maps::MapData>> std::os::fd::raw::AsRawFd for aya::maps::ring_buf::RingBuf<T>
  612. pub fn aya::maps::ring_buf::RingBuf<T>::as_raw_fd(&self) -> std::os::fd::raw::RawFd
  613. impl<T> core::marker::Freeze for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Freeze
  614. impl<T> core::marker::Send for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Send
  615. impl<T> core::marker::Sync for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Sync
  616. impl<T> core::marker::Unpin for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Unpin
  617. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::RefUnwindSafe
  618. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::UnwindSafe
  619. impl<T, U> core::convert::Into<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::From<T>
  620. pub fn aya::maps::ring_buf::RingBuf<T>::into(self) -> U
  621. impl<T, U> core::convert::TryFrom<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::Into<T>
  622. pub type aya::maps::ring_buf::RingBuf<T>::Error = core::convert::Infallible
  623. pub fn aya::maps::ring_buf::RingBuf<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  624. impl<T, U> core::convert::TryInto<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::TryFrom<T>
  625. pub type aya::maps::ring_buf::RingBuf<T>::Error = <U as core::convert::TryFrom<T>>::Error
  626. pub fn aya::maps::ring_buf::RingBuf<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  627. impl<T> core::any::Any for aya::maps::ring_buf::RingBuf<T> where T: 'static + ?core::marker::Sized
  628. pub fn aya::maps::ring_buf::RingBuf<T>::type_id(&self) -> core::any::TypeId
  629. impl<T> core::borrow::Borrow<T> for aya::maps::ring_buf::RingBuf<T> where T: ?core::marker::Sized
  630. pub fn aya::maps::ring_buf::RingBuf<T>::borrow(&self) -> &T
  631. impl<T> core::borrow::BorrowMut<T> for aya::maps::ring_buf::RingBuf<T> where T: ?core::marker::Sized
  632. pub fn aya::maps::ring_buf::RingBuf<T>::borrow_mut(&mut self) -> &mut T
  633. impl<T> core::convert::From<T> for aya::maps::ring_buf::RingBuf<T>
  634. pub fn aya::maps::ring_buf::RingBuf<T>::from(t: T) -> T
  635. pub struct aya::maps::ring_buf::RingBufItem<'a>
  636. impl core::fmt::Debug for aya::maps::ring_buf::RingBufItem<'_>
  637. pub fn aya::maps::ring_buf::RingBufItem<'_>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  638. impl core::ops::deref::Deref for aya::maps::ring_buf::RingBufItem<'_>
  639. pub type aya::maps::ring_buf::RingBufItem<'_>::Target = [u8]
  640. pub fn aya::maps::ring_buf::RingBufItem<'_>::deref(&self) -> &Self::Target
  641. impl core::ops::drop::Drop for aya::maps::ring_buf::RingBufItem<'_>
  642. pub fn aya::maps::ring_buf::RingBufItem<'_>::drop(&mut self)
  643. impl<'a> core::marker::Freeze for aya::maps::ring_buf::RingBufItem<'a>
  644. impl<'a> core::marker::Send for aya::maps::ring_buf::RingBufItem<'a>
  645. impl<'a> core::marker::Sync for aya::maps::ring_buf::RingBufItem<'a>
  646. impl<'a> core::marker::Unpin for aya::maps::ring_buf::RingBufItem<'a>
  647. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ring_buf::RingBufItem<'a>
  648. impl<'a> !core::panic::unwind_safe::UnwindSafe for aya::maps::ring_buf::RingBufItem<'a>
  649. impl<P, T> core::ops::deref::Receiver for aya::maps::ring_buf::RingBufItem<'a> where P: core::ops::deref::Deref<Target = T> + ?core::marker::Sized, T: ?core::marker::Sized
  650. pub type aya::maps::ring_buf::RingBufItem<'a>::Target = T
  651. impl<T, U> core::convert::Into<U> for aya::maps::ring_buf::RingBufItem<'a> where U: core::convert::From<T>
  652. pub fn aya::maps::ring_buf::RingBufItem<'a>::into(self) -> U
  653. impl<T, U> core::convert::TryFrom<U> for aya::maps::ring_buf::RingBufItem<'a> where U: core::convert::Into<T>
  654. pub type aya::maps::ring_buf::RingBufItem<'a>::Error = core::convert::Infallible
  655. pub fn aya::maps::ring_buf::RingBufItem<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  656. impl<T, U> core::convert::TryInto<U> for aya::maps::ring_buf::RingBufItem<'a> where U: core::convert::TryFrom<T>
  657. pub type aya::maps::ring_buf::RingBufItem<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  658. pub fn aya::maps::ring_buf::RingBufItem<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  659. impl<T> core::any::Any for aya::maps::ring_buf::RingBufItem<'a> where T: 'static + ?core::marker::Sized
  660. pub fn aya::maps::ring_buf::RingBufItem<'a>::type_id(&self) -> core::any::TypeId
  661. impl<T> core::borrow::Borrow<T> for aya::maps::ring_buf::RingBufItem<'a> where T: ?core::marker::Sized
  662. pub fn aya::maps::ring_buf::RingBufItem<'a>::borrow(&self) -> &T
  663. impl<T> core::borrow::BorrowMut<T> for aya::maps::ring_buf::RingBufItem<'a> where T: ?core::marker::Sized
  664. pub fn aya::maps::ring_buf::RingBufItem<'a>::borrow_mut(&mut self) -> &mut T
  665. impl<T> core::convert::From<T> for aya::maps::ring_buf::RingBufItem<'a>
  666. pub fn aya::maps::ring_buf::RingBufItem<'a>::from(t: T) -> T
  667. pub mod aya::maps::sock
  668. pub struct aya::maps::sock::SockHash<T, K>
  669. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  670. pub fn aya::maps::SockHash<T, K>::fd(&self) -> &aya::maps::sock::SockMapFd
  671. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K, flags: u64) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  672. pub fn aya::maps::SockHash<T, K>::iter(&self) -> aya::maps::MapIter<'_, K, std::os::fd::raw::RawFd, Self>
  673. pub fn aya::maps::SockHash<T, K>::keys(&self) -> aya::maps::MapKeys<'_, K>
  674. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::SockHash<T, V>
  675. pub fn aya::maps::SockHash<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  676. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  677. pub fn aya::maps::SockHash<T, K>::insert<I: std::os::fd::raw::AsRawFd>(&mut self, key: impl core::borrow::Borrow<K>, value: I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  678. pub fn aya::maps::SockHash<T, K>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  679. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V>
  680. pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  681. pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  682. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V>
  683. pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  684. pub fn aya::maps::SockHash<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  685. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::IterableMap<K, i32> for aya::maps::SockHash<T, K>
  686. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  687. pub fn aya::maps::SockHash<T, K>::map(&self) -> &aya::maps::MapData
  688. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::SockHash<aya::maps::MapData, V>
  689. pub type aya::maps::SockHash<aya::maps::MapData, V>::Error = aya::maps::MapError
  690. pub fn aya::maps::SockHash<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  691. impl<T, K> core::marker::Freeze for aya::maps::SockHash<T, K> where T: core::marker::Freeze
  692. impl<T, K> core::marker::Send for aya::maps::SockHash<T, K> where T: core::marker::Send, K: core::marker::Send
  693. impl<T, K> core::marker::Sync for aya::maps::SockHash<T, K> where T: core::marker::Sync, K: core::marker::Sync
  694. impl<T, K> core::marker::Unpin for aya::maps::SockHash<T, K> where T: core::marker::Unpin, K: core::marker::Unpin
  695. impl<T, K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockHash<T, K> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe
  696. impl<T, K> core::panic::unwind_safe::UnwindSafe for aya::maps::SockHash<T, K> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe
  697. impl<T, U> core::convert::Into<U> for aya::maps::SockHash<T, K> where U: core::convert::From<T>
  698. pub fn aya::maps::SockHash<T, K>::into(self) -> U
  699. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockHash<T, K> where U: core::convert::Into<T>
  700. pub type aya::maps::SockHash<T, K>::Error = core::convert::Infallible
  701. pub fn aya::maps::SockHash<T, K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  702. impl<T, U> core::convert::TryInto<U> for aya::maps::SockHash<T, K> where U: core::convert::TryFrom<T>
  703. pub type aya::maps::SockHash<T, K>::Error = <U as core::convert::TryFrom<T>>::Error
  704. pub fn aya::maps::SockHash<T, K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  705. impl<T> core::any::Any for aya::maps::SockHash<T, K> where T: 'static + ?core::marker::Sized
  706. pub fn aya::maps::SockHash<T, K>::type_id(&self) -> core::any::TypeId
  707. impl<T> core::borrow::Borrow<T> for aya::maps::SockHash<T, K> where T: ?core::marker::Sized
  708. pub fn aya::maps::SockHash<T, K>::borrow(&self) -> &T
  709. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockHash<T, K> where T: ?core::marker::Sized
  710. pub fn aya::maps::SockHash<T, K>::borrow_mut(&mut self) -> &mut T
  711. impl<T> core::convert::From<T> for aya::maps::SockHash<T, K>
  712. pub fn aya::maps::SockHash<T, K>::from(t: T) -> T
  713. pub struct aya::maps::sock::SockMap<T>
  714. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  715. pub fn aya::maps::SockMap<T>::fd(&self) -> &aya::maps::sock::SockMapFd
  716. pub fn aya::maps::SockMap<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  717. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  718. pub fn aya::maps::SockMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  719. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::SockMap<T>
  720. pub fn aya::maps::SockMap<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  721. pub fn aya::maps::SockMap<T>::set<I: std::os::fd::raw::AsRawFd>(&mut self, index: u32, socket: &I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  722. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::SockMap<aya::maps::MapData>
  723. pub type aya::maps::SockMap<aya::maps::MapData>::Error = aya::maps::MapError
  724. pub fn aya::maps::SockMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  725. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData>
  726. pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  727. pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  728. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData>
  729. pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  730. pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  731. impl<T> core::marker::Freeze for aya::maps::SockMap<T> where T: core::marker::Freeze
  732. impl<T> core::marker::Send for aya::maps::SockMap<T> where T: core::marker::Send
  733. impl<T> core::marker::Sync for aya::maps::SockMap<T> where T: core::marker::Sync
  734. impl<T> core::marker::Unpin for aya::maps::SockMap<T> where T: core::marker::Unpin
  735. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  736. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::UnwindSafe
  737. impl<T, U> core::convert::Into<U> for aya::maps::SockMap<T> where U: core::convert::From<T>
  738. pub fn aya::maps::SockMap<T>::into(self) -> U
  739. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockMap<T> where U: core::convert::Into<T>
  740. pub type aya::maps::SockMap<T>::Error = core::convert::Infallible
  741. pub fn aya::maps::SockMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  742. impl<T, U> core::convert::TryInto<U> for aya::maps::SockMap<T> where U: core::convert::TryFrom<T>
  743. pub type aya::maps::SockMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  744. pub fn aya::maps::SockMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  745. impl<T> core::any::Any for aya::maps::SockMap<T> where T: 'static + ?core::marker::Sized
  746. pub fn aya::maps::SockMap<T>::type_id(&self) -> core::any::TypeId
  747. impl<T> core::borrow::Borrow<T> for aya::maps::SockMap<T> where T: ?core::marker::Sized
  748. pub fn aya::maps::SockMap<T>::borrow(&self) -> &T
  749. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockMap<T> where T: ?core::marker::Sized
  750. pub fn aya::maps::SockMap<T>::borrow_mut(&mut self) -> &mut T
  751. impl<T> core::convert::From<T> for aya::maps::SockMap<T>
  752. pub fn aya::maps::SockMap<T>::from(t: T) -> T
  753. pub struct aya::maps::sock::SockMapFd(_)
  754. impl aya::maps::sock::SockMapFd
  755. pub fn aya::maps::sock::SockMapFd::try_clone(&self) -> std::io::error::Result<Self>
  756. impl std::os::fd::owned::AsFd for aya::maps::sock::SockMapFd
  757. pub fn aya::maps::sock::SockMapFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  758. impl core::marker::Freeze for aya::maps::sock::SockMapFd
  759. impl core::marker::Send for aya::maps::sock::SockMapFd
  760. impl core::marker::Sync for aya::maps::sock::SockMapFd
  761. impl core::marker::Unpin for aya::maps::sock::SockMapFd
  762. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::sock::SockMapFd
  763. impl core::panic::unwind_safe::UnwindSafe for aya::maps::sock::SockMapFd
  764. impl<T, U> core::convert::Into<U> for aya::maps::sock::SockMapFd where U: core::convert::From<T>
  765. pub fn aya::maps::sock::SockMapFd::into(self) -> U
  766. impl<T, U> core::convert::TryFrom<U> for aya::maps::sock::SockMapFd where U: core::convert::Into<T>
  767. pub type aya::maps::sock::SockMapFd::Error = core::convert::Infallible
  768. pub fn aya::maps::sock::SockMapFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  769. impl<T, U> core::convert::TryInto<U> for aya::maps::sock::SockMapFd where U: core::convert::TryFrom<T>
  770. pub type aya::maps::sock::SockMapFd::Error = <U as core::convert::TryFrom<T>>::Error
  771. pub fn aya::maps::sock::SockMapFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  772. impl<T> core::any::Any for aya::maps::sock::SockMapFd where T: 'static + ?core::marker::Sized
  773. pub fn aya::maps::sock::SockMapFd::type_id(&self) -> core::any::TypeId
  774. impl<T> core::borrow::Borrow<T> for aya::maps::sock::SockMapFd where T: ?core::marker::Sized
  775. pub fn aya::maps::sock::SockMapFd::borrow(&self) -> &T
  776. impl<T> core::borrow::BorrowMut<T> for aya::maps::sock::SockMapFd where T: ?core::marker::Sized
  777. pub fn aya::maps::sock::SockMapFd::borrow_mut(&mut self) -> &mut T
  778. impl<T> core::convert::From<T> for aya::maps::sock::SockMapFd
  779. pub fn aya::maps::sock::SockMapFd::from(t: T) -> T
  780. pub mod aya::maps::stack
  781. pub struct aya::maps::stack::Stack<T, V: aya::Pod>
  782. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  783. pub fn aya::maps::stack::Stack<T, V>::capacity(&self) -> u32
  784. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  785. pub fn aya::maps::stack::Stack<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  786. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  787. pub fn aya::maps::stack::Stack<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  788. pub fn aya::maps::stack::Stack<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  789. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V>
  790. pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  791. pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  792. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>
  793. pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  794. pub fn aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  795. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::stack::Stack<aya::maps::MapData, V>
  796. pub type aya::maps::stack::Stack<aya::maps::MapData, V>::Error = aya::maps::MapError
  797. pub fn aya::maps::stack::Stack<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  798. impl<T, V> core::marker::Freeze for aya::maps::stack::Stack<T, V> where T: core::marker::Freeze
  799. impl<T, V> core::marker::Send for aya::maps::stack::Stack<T, V> where T: core::marker::Send, V: core::marker::Send
  800. impl<T, V> core::marker::Sync for aya::maps::stack::Stack<T, V> where T: core::marker::Sync, V: core::marker::Sync
  801. impl<T, V> core::marker::Unpin for aya::maps::stack::Stack<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  802. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  803. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  804. impl<T, U> core::convert::Into<U> for aya::maps::stack::Stack<T, V> where U: core::convert::From<T>
  805. pub fn aya::maps::stack::Stack<T, V>::into(self) -> U
  806. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack::Stack<T, V> where U: core::convert::Into<T>
  807. pub type aya::maps::stack::Stack<T, V>::Error = core::convert::Infallible
  808. pub fn aya::maps::stack::Stack<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  809. impl<T, U> core::convert::TryInto<U> for aya::maps::stack::Stack<T, V> where U: core::convert::TryFrom<T>
  810. pub type aya::maps::stack::Stack<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  811. pub fn aya::maps::stack::Stack<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  812. impl<T> core::any::Any for aya::maps::stack::Stack<T, V> where T: 'static + ?core::marker::Sized
  813. pub fn aya::maps::stack::Stack<T, V>::type_id(&self) -> core::any::TypeId
  814. impl<T> core::borrow::Borrow<T> for aya::maps::stack::Stack<T, V> where T: ?core::marker::Sized
  815. pub fn aya::maps::stack::Stack<T, V>::borrow(&self) -> &T
  816. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack::Stack<T, V> where T: ?core::marker::Sized
  817. pub fn aya::maps::stack::Stack<T, V>::borrow_mut(&mut self) -> &mut T
  818. impl<T> core::convert::From<T> for aya::maps::stack::Stack<T, V>
  819. pub fn aya::maps::stack::Stack<T, V>::from(t: T) -> T
  820. pub mod aya::maps::stack_trace
  821. pub struct aya::maps::stack_trace::StackFrame
  822. pub aya::maps::stack_trace::StackFrame::ip: u64
  823. impl core::marker::Freeze for aya::maps::stack_trace::StackFrame
  824. impl core::marker::Send for aya::maps::stack_trace::StackFrame
  825. impl core::marker::Sync for aya::maps::stack_trace::StackFrame
  826. impl core::marker::Unpin for aya::maps::stack_trace::StackFrame
  827. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackFrame
  828. impl core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackFrame
  829. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackFrame where U: core::convert::From<T>
  830. pub fn aya::maps::stack_trace::StackFrame::into(self) -> U
  831. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackFrame where U: core::convert::Into<T>
  832. pub type aya::maps::stack_trace::StackFrame::Error = core::convert::Infallible
  833. pub fn aya::maps::stack_trace::StackFrame::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  834. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackFrame where U: core::convert::TryFrom<T>
  835. pub type aya::maps::stack_trace::StackFrame::Error = <U as core::convert::TryFrom<T>>::Error
  836. pub fn aya::maps::stack_trace::StackFrame::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  837. impl<T> core::any::Any for aya::maps::stack_trace::StackFrame where T: 'static + ?core::marker::Sized
  838. pub fn aya::maps::stack_trace::StackFrame::type_id(&self) -> core::any::TypeId
  839. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackFrame where T: ?core::marker::Sized
  840. pub fn aya::maps::stack_trace::StackFrame::borrow(&self) -> &T
  841. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackFrame where T: ?core::marker::Sized
  842. pub fn aya::maps::stack_trace::StackFrame::borrow_mut(&mut self) -> &mut T
  843. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackFrame
  844. pub fn aya::maps::stack_trace::StackFrame::from(t: T) -> T
  845. pub struct aya::maps::stack_trace::StackTrace
  846. pub aya::maps::stack_trace::StackTrace::id: u32
  847. impl aya::maps::stack_trace::StackTrace
  848. pub fn aya::maps::stack_trace::StackTrace::frames(&self) -> &[aya::maps::stack_trace::StackFrame]
  849. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  850. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  851. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  852. impl core::marker::Freeze for aya::maps::stack_trace::StackTrace
  853. impl core::marker::Send for aya::maps::stack_trace::StackTrace
  854. impl core::marker::Sync for aya::maps::stack_trace::StackTrace
  855. impl core::marker::Unpin for aya::maps::stack_trace::StackTrace
  856. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTrace
  857. impl core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTrace
  858. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackTrace where U: core::convert::From<T>
  859. pub fn aya::maps::stack_trace::StackTrace::into(self) -> U
  860. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackTrace where U: core::convert::Into<T>
  861. pub type aya::maps::stack_trace::StackTrace::Error = core::convert::Infallible
  862. pub fn aya::maps::stack_trace::StackTrace::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  863. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackTrace where U: core::convert::TryFrom<T>
  864. pub type aya::maps::stack_trace::StackTrace::Error = <U as core::convert::TryFrom<T>>::Error
  865. pub fn aya::maps::stack_trace::StackTrace::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  866. impl<T> core::any::Any for aya::maps::stack_trace::StackTrace where T: 'static + ?core::marker::Sized
  867. pub fn aya::maps::stack_trace::StackTrace::type_id(&self) -> core::any::TypeId
  868. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackTrace where T: ?core::marker::Sized
  869. pub fn aya::maps::stack_trace::StackTrace::borrow(&self) -> &T
  870. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackTrace where T: ?core::marker::Sized
  871. pub fn aya::maps::stack_trace::StackTrace::borrow_mut(&mut self) -> &mut T
  872. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackTrace
  873. pub fn aya::maps::stack_trace::StackTrace::from(t: T) -> T
  874. pub struct aya::maps::stack_trace::StackTraceMap<T>
  875. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  876. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, stack_id: &u32, flags: u64) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  877. pub fn aya::maps::stack_trace::StackTraceMap<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::stack_trace::StackTrace, Self>
  878. pub fn aya::maps::stack_trace::StackTraceMap<T>::stack_ids(&self) -> aya::maps::MapKeys<'_, u32>
  879. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  880. pub fn aya::maps::stack_trace::StackTraceMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  881. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  882. pub fn aya::maps::stack_trace::StackTraceMap<T>::remove(&mut self, stack_id: &u32) -> core::result::Result<(), aya::maps::MapError>
  883. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>
  884. pub type aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::Error = aya::maps::MapError
  885. pub fn aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  886. impl<'a, T: core::borrow::Borrow<aya::maps::MapData>> core::iter::traits::collect::IntoIterator for &'a aya::maps::stack_trace::StackTraceMap<T>
  887. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::IntoIter = aya::maps::MapIter<'a, u32, aya::maps::stack_trace::StackTrace, aya::maps::stack_trace::StackTraceMap<T>>
  888. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::Item = core::result::Result<(u32, aya::maps::stack_trace::StackTrace), aya::maps::MapError>
  889. pub fn &'a aya::maps::stack_trace::StackTraceMap<T>::into_iter(self) -> Self::IntoIter
  890. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>
  891. pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  892. pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  893. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>
  894. pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  895. pub fn aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  896. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  897. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  898. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  899. impl<T: core::fmt::Debug> core::fmt::Debug for aya::maps::stack_trace::StackTraceMap<T>
  900. pub fn aya::maps::stack_trace::StackTraceMap<T>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  901. impl<T> core::marker::Freeze for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Freeze
  902. impl<T> core::marker::Send for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Send
  903. impl<T> core::marker::Sync for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sync
  904. impl<T> core::marker::Unpin for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Unpin
  905. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  906. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::UnwindSafe
  907. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::From<T>
  908. pub fn aya::maps::stack_trace::StackTraceMap<T>::into(self) -> U
  909. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::Into<T>
  910. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = core::convert::Infallible
  911. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  912. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::TryFrom<T>
  913. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  914. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  915. impl<T> core::any::Any for aya::maps::stack_trace::StackTraceMap<T> where T: 'static + ?core::marker::Sized
  916. pub fn aya::maps::stack_trace::StackTraceMap<T>::type_id(&self) -> core::any::TypeId
  917. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackTraceMap<T> where T: ?core::marker::Sized
  918. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow(&self) -> &T
  919. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackTraceMap<T> where T: ?core::marker::Sized
  920. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow_mut(&mut self) -> &mut T
  921. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackTraceMap<T>
  922. pub fn aya::maps::stack_trace::StackTraceMap<T>::from(t: T) -> T
  923. pub mod aya::maps::xdp
  924. pub enum aya::maps::xdp::XdpMapError
  925. pub aya::maps::xdp::XdpMapError::ChainedProgramNotSupported
  926. pub aya::maps::xdp::XdpMapError::MapError(aya::maps::MapError)
  927. impl core::convert::From<aya::maps::MapError> for aya::maps::xdp::XdpMapError
  928. pub fn aya::maps::xdp::XdpMapError::from(source: aya::maps::MapError) -> Self
  929. impl core::error::Error for aya::maps::xdp::XdpMapError
  930. pub fn aya::maps::xdp::XdpMapError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  931. impl core::fmt::Debug for aya::maps::xdp::XdpMapError
  932. pub fn aya::maps::xdp::XdpMapError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  933. impl core::fmt::Display for aya::maps::xdp::XdpMapError
  934. pub fn aya::maps::xdp::XdpMapError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  935. impl core::marker::Freeze for aya::maps::xdp::XdpMapError
  936. impl core::marker::Send for aya::maps::xdp::XdpMapError
  937. impl core::marker::Sync for aya::maps::xdp::XdpMapError
  938. impl core::marker::Unpin for aya::maps::xdp::XdpMapError
  939. impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::xdp::XdpMapError
  940. impl !core::panic::unwind_safe::UnwindSafe for aya::maps::xdp::XdpMapError
  941. impl<T, U> core::convert::Into<U> for aya::maps::xdp::XdpMapError where U: core::convert::From<T>
  942. pub fn aya::maps::xdp::XdpMapError::into(self) -> U
  943. impl<T, U> core::convert::TryFrom<U> for aya::maps::xdp::XdpMapError where U: core::convert::Into<T>
  944. pub type aya::maps::xdp::XdpMapError::Error = core::convert::Infallible
  945. pub fn aya::maps::xdp::XdpMapError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  946. impl<T, U> core::convert::TryInto<U> for aya::maps::xdp::XdpMapError where U: core::convert::TryFrom<T>
  947. pub type aya::maps::xdp::XdpMapError::Error = <U as core::convert::TryFrom<T>>::Error
  948. pub fn aya::maps::xdp::XdpMapError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  949. impl<T> alloc::string::ToString for aya::maps::xdp::XdpMapError where T: core::fmt::Display + ?core::marker::Sized
  950. pub fn aya::maps::xdp::XdpMapError::to_string(&self) -> alloc::string::String
  951. impl<T> core::any::Any for aya::maps::xdp::XdpMapError where T: 'static + ?core::marker::Sized
  952. pub fn aya::maps::xdp::XdpMapError::type_id(&self) -> core::any::TypeId
  953. impl<T> core::borrow::Borrow<T> for aya::maps::xdp::XdpMapError where T: ?core::marker::Sized
  954. pub fn aya::maps::xdp::XdpMapError::borrow(&self) -> &T
  955. impl<T> core::borrow::BorrowMut<T> for aya::maps::xdp::XdpMapError where T: ?core::marker::Sized
  956. pub fn aya::maps::xdp::XdpMapError::borrow_mut(&mut self) -> &mut T
  957. impl<T> core::convert::From<T> for aya::maps::xdp::XdpMapError
  958. pub fn aya::maps::xdp::XdpMapError::from(t: T) -> T
  959. pub struct aya::maps::xdp::CpuMap<T>
  960. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  961. pub fn aya::maps::CpuMap<T>::get(&self, cpu_index: u32, flags: u64) -> core::result::Result<aya::maps::xdp::cpu_map::CpuMapValue, aya::maps::MapError>
  962. pub fn aya::maps::CpuMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::xdp::cpu_map::CpuMapValue, aya::maps::MapError>> + '_
  963. pub fn aya::maps::CpuMap<T>::len(&self) -> u32
  964. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  965. pub fn aya::maps::CpuMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  966. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::CpuMap<T>
  967. pub fn aya::maps::CpuMap<T>::set(&mut self, cpu_index: u32, queue_size: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  968. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::CpuMap<aya::maps::MapData>
  969. pub type aya::maps::CpuMap<aya::maps::MapData>::Error = aya::maps::MapError
  970. pub fn aya::maps::CpuMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  971. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::CpuMap<&'a aya::maps::MapData>
  972. pub type aya::maps::CpuMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  973. pub fn aya::maps::CpuMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  974. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::CpuMap<&'a mut aya::maps::MapData>
  975. pub type aya::maps::CpuMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  976. pub fn aya::maps::CpuMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  977. impl<T> core::marker::Freeze for aya::maps::CpuMap<T> where T: core::marker::Freeze
  978. impl<T> core::marker::Send for aya::maps::CpuMap<T> where T: core::marker::Send
  979. impl<T> core::marker::Sync for aya::maps::CpuMap<T> where T: core::marker::Sync
  980. impl<T> core::marker::Unpin for aya::maps::CpuMap<T> where T: core::marker::Unpin
  981. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  982. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::UnwindSafe
  983. impl<T, U> core::convert::Into<U> for aya::maps::CpuMap<T> where U: core::convert::From<T>
  984. pub fn aya::maps::CpuMap<T>::into(self) -> U
  985. impl<T, U> core::convert::TryFrom<U> for aya::maps::CpuMap<T> where U: core::convert::Into<T>
  986. pub type aya::maps::CpuMap<T>::Error = core::convert::Infallible
  987. pub fn aya::maps::CpuMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  988. impl<T, U> core::convert::TryInto<U> for aya::maps::CpuMap<T> where U: core::convert::TryFrom<T>
  989. pub type aya::maps::CpuMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  990. pub fn aya::maps::CpuMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  991. impl<T> core::any::Any for aya::maps::CpuMap<T> where T: 'static + ?core::marker::Sized
  992. pub fn aya::maps::CpuMap<T>::type_id(&self) -> core::any::TypeId
  993. impl<T> core::borrow::Borrow<T> for aya::maps::CpuMap<T> where T: ?core::marker::Sized
  994. pub fn aya::maps::CpuMap<T>::borrow(&self) -> &T
  995. impl<T> core::borrow::BorrowMut<T> for aya::maps::CpuMap<T> where T: ?core::marker::Sized
  996. pub fn aya::maps::CpuMap<T>::borrow_mut(&mut self) -> &mut T
  997. impl<T> core::convert::From<T> for aya::maps::CpuMap<T>
  998. pub fn aya::maps::CpuMap<T>::from(t: T) -> T
  999. pub struct aya::maps::xdp::DevMap<T>
  1000. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  1001. pub fn aya::maps::DevMap<T>::get(&self, index: u32, flags: u64) -> core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>
  1002. pub fn aya::maps::DevMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>> + '_
  1003. pub fn aya::maps::DevMap<T>::len(&self) -> u32
  1004. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  1005. pub fn aya::maps::DevMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1006. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMap<T>
  1007. pub fn aya::maps::DevMap<T>::set(&mut self, index: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1008. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMap<aya::maps::MapData>
  1009. pub type aya::maps::DevMap<aya::maps::MapData>::Error = aya::maps::MapError
  1010. pub fn aya::maps::DevMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1011. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMap<&'a aya::maps::MapData>
  1012. pub type aya::maps::DevMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1013. pub fn aya::maps::DevMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1014. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMap<&'a mut aya::maps::MapData>
  1015. pub type aya::maps::DevMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1016. pub fn aya::maps::DevMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1017. impl<T> core::marker::Freeze for aya::maps::DevMap<T> where T: core::marker::Freeze
  1018. impl<T> core::marker::Send for aya::maps::DevMap<T> where T: core::marker::Send
  1019. impl<T> core::marker::Sync for aya::maps::DevMap<T> where T: core::marker::Sync
  1020. impl<T> core::marker::Unpin for aya::maps::DevMap<T> where T: core::marker::Unpin
  1021. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1022. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1023. impl<T, U> core::convert::Into<U> for aya::maps::DevMap<T> where U: core::convert::From<T>
  1024. pub fn aya::maps::DevMap<T>::into(self) -> U
  1025. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMap<T> where U: core::convert::Into<T>
  1026. pub type aya::maps::DevMap<T>::Error = core::convert::Infallible
  1027. pub fn aya::maps::DevMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1028. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMap<T> where U: core::convert::TryFrom<T>
  1029. pub type aya::maps::DevMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1030. pub fn aya::maps::DevMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1031. impl<T> core::any::Any for aya::maps::DevMap<T> where T: 'static + ?core::marker::Sized
  1032. pub fn aya::maps::DevMap<T>::type_id(&self) -> core::any::TypeId
  1033. impl<T> core::borrow::Borrow<T> for aya::maps::DevMap<T> where T: ?core::marker::Sized
  1034. pub fn aya::maps::DevMap<T>::borrow(&self) -> &T
  1035. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMap<T> where T: ?core::marker::Sized
  1036. pub fn aya::maps::DevMap<T>::borrow_mut(&mut self) -> &mut T
  1037. impl<T> core::convert::From<T> for aya::maps::DevMap<T>
  1038. pub fn aya::maps::DevMap<T>::from(t: T) -> T
  1039. pub struct aya::maps::xdp::DevMapHash<T>
  1040. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1041. pub fn aya::maps::DevMapHash<T>::get(&self, key: u32, flags: u64) -> core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>
  1042. pub fn aya::maps::DevMapHash<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::xdp::dev_map::DevMapValue, Self>
  1043. pub fn aya::maps::DevMapHash<T>::keys(&self) -> aya::maps::MapKeys<'_, u32>
  1044. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1045. pub fn aya::maps::DevMapHash<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1046. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1047. pub fn aya::maps::DevMapHash<T>::insert(&mut self, key: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1048. pub fn aya::maps::DevMapHash<T>::remove(&mut self, key: u32) -> core::result::Result<(), aya::maps::MapError>
  1049. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMapHash<aya::maps::MapData>
  1050. pub type aya::maps::DevMapHash<aya::maps::MapData>::Error = aya::maps::MapError
  1051. pub fn aya::maps::DevMapHash<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1052. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMapHash<&'a aya::maps::MapData>
  1053. pub type aya::maps::DevMapHash<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1054. pub fn aya::maps::DevMapHash<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1055. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMapHash<&'a mut aya::maps::MapData>
  1056. pub type aya::maps::DevMapHash<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1057. pub fn aya::maps::DevMapHash<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1058. impl<T> core::marker::Freeze for aya::maps::DevMapHash<T> where T: core::marker::Freeze
  1059. impl<T> core::marker::Send for aya::maps::DevMapHash<T> where T: core::marker::Send
  1060. impl<T> core::marker::Sync for aya::maps::DevMapHash<T> where T: core::marker::Sync
  1061. impl<T> core::marker::Unpin for aya::maps::DevMapHash<T> where T: core::marker::Unpin
  1062. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1063. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::UnwindSafe
  1064. impl<T, U> core::convert::Into<U> for aya::maps::DevMapHash<T> where U: core::convert::From<T>
  1065. pub fn aya::maps::DevMapHash<T>::into(self) -> U
  1066. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMapHash<T> where U: core::convert::Into<T>
  1067. pub type aya::maps::DevMapHash<T>::Error = core::convert::Infallible
  1068. pub fn aya::maps::DevMapHash<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1069. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMapHash<T> where U: core::convert::TryFrom<T>
  1070. pub type aya::maps::DevMapHash<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1071. pub fn aya::maps::DevMapHash<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1072. impl<T> core::any::Any for aya::maps::DevMapHash<T> where T: 'static + ?core::marker::Sized
  1073. pub fn aya::maps::DevMapHash<T>::type_id(&self) -> core::any::TypeId
  1074. impl<T> core::borrow::Borrow<T> for aya::maps::DevMapHash<T> where T: ?core::marker::Sized
  1075. pub fn aya::maps::DevMapHash<T>::borrow(&self) -> &T
  1076. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMapHash<T> where T: ?core::marker::Sized
  1077. pub fn aya::maps::DevMapHash<T>::borrow_mut(&mut self) -> &mut T
  1078. impl<T> core::convert::From<T> for aya::maps::DevMapHash<T>
  1079. pub fn aya::maps::DevMapHash<T>::from(t: T) -> T
  1080. pub struct aya::maps::xdp::XskMap<T>
  1081. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  1082. pub fn aya::maps::XskMap<T>::len(&self) -> u32
  1083. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  1084. pub fn aya::maps::XskMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1085. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::XskMap<T>
  1086. pub fn aya::maps::XskMap<T>::set(&mut self, index: u32, socket_fd: impl std::os::fd::raw::AsRawFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1087. pub fn aya::maps::XskMap<T>::unset(&mut self, index: u32) -> core::result::Result<(), aya::maps::MapError>
  1088. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::XskMap<aya::maps::MapData>
  1089. pub type aya::maps::XskMap<aya::maps::MapData>::Error = aya::maps::MapError
  1090. pub fn aya::maps::XskMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1091. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::XskMap<&'a aya::maps::MapData>
  1092. pub type aya::maps::XskMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1093. pub fn aya::maps::XskMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1094. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::XskMap<&'a mut aya::maps::MapData>
  1095. pub type aya::maps::XskMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1096. pub fn aya::maps::XskMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1097. impl<T> core::marker::Freeze for aya::maps::XskMap<T> where T: core::marker::Freeze
  1098. impl<T> core::marker::Send for aya::maps::XskMap<T> where T: core::marker::Send
  1099. impl<T> core::marker::Sync for aya::maps::XskMap<T> where T: core::marker::Sync
  1100. impl<T> core::marker::Unpin for aya::maps::XskMap<T> where T: core::marker::Unpin
  1101. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1102. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1103. impl<T, U> core::convert::Into<U> for aya::maps::XskMap<T> where U: core::convert::From<T>
  1104. pub fn aya::maps::XskMap<T>::into(self) -> U
  1105. impl<T, U> core::convert::TryFrom<U> for aya::maps::XskMap<T> where U: core::convert::Into<T>
  1106. pub type aya::maps::XskMap<T>::Error = core::convert::Infallible
  1107. pub fn aya::maps::XskMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1108. impl<T, U> core::convert::TryInto<U> for aya::maps::XskMap<T> where U: core::convert::TryFrom<T>
  1109. pub type aya::maps::XskMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1110. pub fn aya::maps::XskMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1111. impl<T> core::any::Any for aya::maps::XskMap<T> where T: 'static + ?core::marker::Sized
  1112. pub fn aya::maps::XskMap<T>::type_id(&self) -> core::any::TypeId
  1113. impl<T> core::borrow::Borrow<T> for aya::maps::XskMap<T> where T: ?core::marker::Sized
  1114. pub fn aya::maps::XskMap<T>::borrow(&self) -> &T
  1115. impl<T> core::borrow::BorrowMut<T> for aya::maps::XskMap<T> where T: ?core::marker::Sized
  1116. pub fn aya::maps::XskMap<T>::borrow_mut(&mut self) -> &mut T
  1117. impl<T> core::convert::From<T> for aya::maps::XskMap<T>
  1118. pub fn aya::maps::XskMap<T>::from(t: T) -> T
  1119. pub enum aya::maps::Map
  1120. pub aya::maps::Map::Array(aya::maps::MapData)
  1121. pub aya::maps::Map::BloomFilter(aya::maps::MapData)
  1122. pub aya::maps::Map::CpuMap(aya::maps::MapData)
  1123. pub aya::maps::Map::DevMap(aya::maps::MapData)
  1124. pub aya::maps::Map::DevMapHash(aya::maps::MapData)
  1125. pub aya::maps::Map::HashMap(aya::maps::MapData)
  1126. pub aya::maps::Map::LpmTrie(aya::maps::MapData)
  1127. pub aya::maps::Map::LruHashMap(aya::maps::MapData)
  1128. pub aya::maps::Map::PerCpuArray(aya::maps::MapData)
  1129. pub aya::maps::Map::PerCpuHashMap(aya::maps::MapData)
  1130. pub aya::maps::Map::PerCpuLruHashMap(aya::maps::MapData)
  1131. pub aya::maps::Map::PerfEventArray(aya::maps::MapData)
  1132. pub aya::maps::Map::ProgramArray(aya::maps::MapData)
  1133. pub aya::maps::Map::Queue(aya::maps::MapData)
  1134. pub aya::maps::Map::RingBuf(aya::maps::MapData)
  1135. pub aya::maps::Map::SockHash(aya::maps::MapData)
  1136. pub aya::maps::Map::SockMap(aya::maps::MapData)
  1137. pub aya::maps::Map::Stack(aya::maps::MapData)
  1138. pub aya::maps::Map::StackTraceMap(aya::maps::MapData)
  1139. pub aya::maps::Map::Unsupported(aya::maps::MapData)
  1140. pub aya::maps::Map::XskMap(aya::maps::MapData)
  1141. impl aya::maps::Map
  1142. pub fn aya::maps::Map::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1143. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::CpuMap<aya::maps::MapData>
  1144. pub type aya::maps::CpuMap<aya::maps::MapData>::Error = aya::maps::MapError
  1145. pub fn aya::maps::CpuMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1146. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMap<aya::maps::MapData>
  1147. pub type aya::maps::DevMap<aya::maps::MapData>::Error = aya::maps::MapError
  1148. pub fn aya::maps::DevMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1149. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMapHash<aya::maps::MapData>
  1150. pub type aya::maps::DevMapHash<aya::maps::MapData>::Error = aya::maps::MapError
  1151. pub fn aya::maps::DevMapHash<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1152. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ProgramArray<aya::maps::MapData>
  1153. pub type aya::maps::ProgramArray<aya::maps::MapData>::Error = aya::maps::MapError
  1154. pub fn aya::maps::ProgramArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1155. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::SockMap<aya::maps::MapData>
  1156. pub type aya::maps::SockMap<aya::maps::MapData>::Error = aya::maps::MapError
  1157. pub fn aya::maps::SockMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1158. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::XskMap<aya::maps::MapData>
  1159. pub type aya::maps::XskMap<aya::maps::MapData>::Error = aya::maps::MapError
  1160. pub fn aya::maps::XskMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1161. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>
  1162. pub type aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  1163. pub fn aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1164. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::PerfEventArray<aya::maps::MapData>
  1165. pub type aya::maps::perf::PerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  1166. pub fn aya::maps::perf::PerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1167. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ring_buf::RingBuf<aya::maps::MapData>
  1168. pub type aya::maps::ring_buf::RingBuf<aya::maps::MapData>::Error = aya::maps::MapError
  1169. pub fn aya::maps::ring_buf::RingBuf<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1170. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>
  1171. pub type aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::Error = aya::maps::MapError
  1172. pub fn aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1173. impl core::fmt::Debug for aya::maps::Map
  1174. pub fn aya::maps::Map::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1175. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>
  1176. pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1177. pub fn aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1178. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>
  1179. pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1180. pub fn aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1181. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>
  1182. pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1183. pub fn aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1184. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>
  1185. pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1186. pub fn aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1187. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>
  1188. pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1189. pub fn aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1190. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>
  1191. pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1192. pub fn aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1193. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V>
  1194. pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1195. pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1196. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V>
  1197. pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1198. pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1199. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V>
  1200. pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1201. pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1202. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>
  1203. pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1204. pub fn aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1205. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V>
  1206. pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1207. pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1208. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V>
  1209. pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1210. pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1211. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>
  1212. pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1213. pub fn aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1214. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V>
  1215. pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1216. pub fn aya::maps::SockHash<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1217. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V>
  1218. pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1219. pub fn aya::maps::array::Array<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1220. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>
  1221. pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1222. pub fn aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1223. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>
  1224. pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1225. pub fn aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1226. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>
  1227. pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1228. pub fn aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1229. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::CpuMap<&'a aya::maps::MapData>
  1230. pub type aya::maps::CpuMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1231. pub fn aya::maps::CpuMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1232. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMap<&'a aya::maps::MapData>
  1233. pub type aya::maps::DevMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1234. pub fn aya::maps::DevMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1235. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMapHash<&'a aya::maps::MapData>
  1236. pub type aya::maps::DevMapHash<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1237. pub fn aya::maps::DevMapHash<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1238. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData>
  1239. pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1240. pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1241. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData>
  1242. pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1243. pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1244. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::XskMap<&'a aya::maps::MapData>
  1245. pub type aya::maps::XskMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1246. pub fn aya::maps::XskMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1247. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>
  1248. pub type aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1249. pub fn aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1250. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>
  1251. pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1252. pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1253. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>
  1254. pub type aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1255. pub fn aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1256. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>
  1257. pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1258. pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1259. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::CpuMap<&'a mut aya::maps::MapData>
  1260. pub type aya::maps::CpuMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1261. pub fn aya::maps::CpuMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1262. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMap<&'a mut aya::maps::MapData>
  1263. pub type aya::maps::DevMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1264. pub fn aya::maps::DevMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1265. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMapHash<&'a mut aya::maps::MapData>
  1266. pub type aya::maps::DevMapHash<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1267. pub fn aya::maps::DevMapHash<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1268. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData>
  1269. pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1270. pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1271. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData>
  1272. pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1273. pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1274. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::XskMap<&'a mut aya::maps::MapData>
  1275. pub type aya::maps::XskMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1276. pub fn aya::maps::XskMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1277. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>
  1278. pub type aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1279. pub fn aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1280. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>
  1281. pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1282. pub fn aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1283. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>
  1284. pub type aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1285. pub fn aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1286. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>
  1287. pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1288. pub fn aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1289. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>
  1290. pub type aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1291. pub fn aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1292. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>
  1293. pub type aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1294. pub fn aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1295. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>
  1296. pub type aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1297. pub fn aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1298. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::PerCpuArray<aya::maps::MapData, V>
  1299. pub type aya::maps::PerCpuArray<aya::maps::MapData, V>::Error = aya::maps::MapError
  1300. pub fn aya::maps::PerCpuArray<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1301. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::SockHash<aya::maps::MapData, V>
  1302. pub type aya::maps::SockHash<aya::maps::MapData, V>::Error = aya::maps::MapError
  1303. pub fn aya::maps::SockHash<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1304. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::array::Array<aya::maps::MapData, V>
  1305. pub type aya::maps::array::Array<aya::maps::MapData, V>::Error = aya::maps::MapError
  1306. pub fn aya::maps::array::Array<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1307. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>
  1308. pub type aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::Error = aya::maps::MapError
  1309. pub fn aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1310. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::queue::Queue<aya::maps::MapData, V>
  1311. pub type aya::maps::queue::Queue<aya::maps::MapData, V>::Error = aya::maps::MapError
  1312. pub fn aya::maps::queue::Queue<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1313. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::stack::Stack<aya::maps::MapData, V>
  1314. pub type aya::maps::stack::Stack<aya::maps::MapData, V>::Error = aya::maps::MapError
  1315. pub fn aya::maps::stack::Stack<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1316. impl core::marker::Freeze for aya::maps::Map
  1317. impl core::marker::Send for aya::maps::Map
  1318. impl core::marker::Sync for aya::maps::Map
  1319. impl core::marker::Unpin for aya::maps::Map
  1320. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::Map
  1321. impl core::panic::unwind_safe::UnwindSafe for aya::maps::Map
  1322. impl<T, U> core::convert::Into<U> for aya::maps::Map where U: core::convert::From<T>
  1323. pub fn aya::maps::Map::into(self) -> U
  1324. impl<T, U> core::convert::TryFrom<U> for aya::maps::Map where U: core::convert::Into<T>
  1325. pub type aya::maps::Map::Error = core::convert::Infallible
  1326. pub fn aya::maps::Map::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1327. impl<T, U> core::convert::TryInto<U> for aya::maps::Map where U: core::convert::TryFrom<T>
  1328. pub type aya::maps::Map::Error = <U as core::convert::TryFrom<T>>::Error
  1329. pub fn aya::maps::Map::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1330. impl<T> core::any::Any for aya::maps::Map where T: 'static + ?core::marker::Sized
  1331. pub fn aya::maps::Map::type_id(&self) -> core::any::TypeId
  1332. impl<T> core::borrow::Borrow<T> for aya::maps::Map where T: ?core::marker::Sized
  1333. pub fn aya::maps::Map::borrow(&self) -> &T
  1334. impl<T> core::borrow::BorrowMut<T> for aya::maps::Map where T: ?core::marker::Sized
  1335. pub fn aya::maps::Map::borrow_mut(&mut self) -> &mut T
  1336. impl<T> core::convert::From<T> for aya::maps::Map
  1337. pub fn aya::maps::Map::from(t: T) -> T
  1338. pub enum aya::maps::MapError
  1339. pub aya::maps::MapError::CreateError
  1340. pub aya::maps::MapError::CreateError::io_error: std::io::error::Error
  1341. pub aya::maps::MapError::CreateError::name: alloc::string::String
  1342. pub aya::maps::MapError::ElementNotFound
  1343. pub aya::maps::MapError::InvalidKeySize
  1344. pub aya::maps::MapError::InvalidKeySize::expected: usize
  1345. pub aya::maps::MapError::InvalidKeySize::size: usize
  1346. pub aya::maps::MapError::InvalidMapType
  1347. pub aya::maps::MapError::InvalidMapType::map_type: u32
  1348. pub aya::maps::MapError::InvalidName
  1349. pub aya::maps::MapError::InvalidName::name: alloc::string::String
  1350. pub aya::maps::MapError::InvalidValueSize
  1351. pub aya::maps::MapError::InvalidValueSize::expected: usize
  1352. pub aya::maps::MapError::InvalidValueSize::size: usize
  1353. pub aya::maps::MapError::IoError(std::io::error::Error)
  1354. pub aya::maps::MapError::KeyNotFound
  1355. pub aya::maps::MapError::OutOfBounds
  1356. pub aya::maps::MapError::OutOfBounds::index: u32
  1357. pub aya::maps::MapError::OutOfBounds::max_entries: u32
  1358. pub aya::maps::MapError::PinError
  1359. pub aya::maps::MapError::PinError::error: aya::pin::PinError
  1360. pub aya::maps::MapError::PinError::name: core::option::Option<alloc::string::String>
  1361. pub aya::maps::MapError::ProgIdNotSupported
  1362. pub aya::maps::MapError::ProgramNotLoaded
  1363. pub aya::maps::MapError::SyscallError(aya::sys::SyscallError)
  1364. pub aya::maps::MapError::Unsupported
  1365. pub aya::maps::MapError::Unsupported::map_type: aya_obj::generated::linux_bindings_x86_64::bpf_map_type
  1366. pub aya::maps::MapError::Unsupported::name: alloc::string::String
  1367. impl core::convert::From<aya::maps::MapError> for aya::EbpfError
  1368. pub fn aya::EbpfError::from(source: aya::maps::MapError) -> Self
  1369. impl core::convert::From<aya::maps::MapError> for aya::maps::xdp::XdpMapError
  1370. pub fn aya::maps::xdp::XdpMapError::from(source: aya::maps::MapError) -> Self
  1371. impl core::convert::From<aya::maps::MapError> for aya::programs::ProgramError
  1372. pub fn aya::programs::ProgramError::from(source: aya::maps::MapError) -> Self
  1373. impl core::convert::From<aya::sys::SyscallError> for aya::maps::MapError
  1374. pub fn aya::maps::MapError::from(source: aya::sys::SyscallError) -> Self
  1375. impl core::convert::From<aya_obj::obj::InvalidTypeBinding<u32>> for aya::maps::MapError
  1376. pub fn aya::maps::MapError::from(e: aya_obj::obj::InvalidTypeBinding<u32>) -> Self
  1377. impl core::convert::From<std::io::error::Error> for aya::maps::MapError
  1378. pub fn aya::maps::MapError::from(source: std::io::error::Error) -> Self
  1379. impl core::error::Error for aya::maps::MapError
  1380. pub fn aya::maps::MapError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  1381. impl core::fmt::Debug for aya::maps::MapError
  1382. pub fn aya::maps::MapError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1383. impl core::fmt::Display for aya::maps::MapError
  1384. pub fn aya::maps::MapError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1385. impl core::marker::Freeze for aya::maps::MapError
  1386. impl core::marker::Send for aya::maps::MapError
  1387. impl core::marker::Sync for aya::maps::MapError
  1388. impl core::marker::Unpin for aya::maps::MapError
  1389. impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapError
  1390. impl !core::panic::unwind_safe::UnwindSafe for aya::maps::MapError
  1391. impl<T, U> core::convert::Into<U> for aya::maps::MapError where U: core::convert::From<T>
  1392. pub fn aya::maps::MapError::into(self) -> U
  1393. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapError where U: core::convert::Into<T>
  1394. pub type aya::maps::MapError::Error = core::convert::Infallible
  1395. pub fn aya::maps::MapError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1396. impl<T, U> core::convert::TryInto<U> for aya::maps::MapError where U: core::convert::TryFrom<T>
  1397. pub type aya::maps::MapError::Error = <U as core::convert::TryFrom<T>>::Error
  1398. pub fn aya::maps::MapError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1399. impl<T> alloc::string::ToString for aya::maps::MapError where T: core::fmt::Display + ?core::marker::Sized
  1400. pub fn aya::maps::MapError::to_string(&self) -> alloc::string::String
  1401. impl<T> core::any::Any for aya::maps::MapError where T: 'static + ?core::marker::Sized
  1402. pub fn aya::maps::MapError::type_id(&self) -> core::any::TypeId
  1403. impl<T> core::borrow::Borrow<T> for aya::maps::MapError where T: ?core::marker::Sized
  1404. pub fn aya::maps::MapError::borrow(&self) -> &T
  1405. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapError where T: ?core::marker::Sized
  1406. pub fn aya::maps::MapError::borrow_mut(&mut self) -> &mut T
  1407. impl<T> core::convert::From<T> for aya::maps::MapError
  1408. pub fn aya::maps::MapError::from(t: T) -> T
  1409. #[non_exhaustive] pub enum aya::maps::MapType
  1410. pub aya::maps::MapType::Arena = 33
  1411. pub aya::maps::MapType::Array = 2
  1412. pub aya::maps::MapType::ArrayOfMaps = 12
  1413. pub aya::maps::MapType::BloomFilter = 30
  1414. pub aya::maps::MapType::CgroupArray = 8
  1415. pub aya::maps::MapType::CgroupStorage = 19
  1416. pub aya::maps::MapType::CgrpStorage = 32
  1417. pub aya::maps::MapType::CpuMap = 16
  1418. pub aya::maps::MapType::DevMap = 14
  1419. pub aya::maps::MapType::DevMapHash = 25
  1420. pub aya::maps::MapType::Hash = 1
  1421. pub aya::maps::MapType::HashOfMaps = 13
  1422. pub aya::maps::MapType::InodeStorage = 28
  1423. pub aya::maps::MapType::LpmTrie = 11
  1424. pub aya::maps::MapType::LruHash = 9
  1425. pub aya::maps::MapType::LruPerCpuHash = 10
  1426. pub aya::maps::MapType::PerCpuArray = 6
  1427. pub aya::maps::MapType::PerCpuCgroupStorage = 21
  1428. pub aya::maps::MapType::PerCpuHash = 5
  1429. pub aya::maps::MapType::PerfEventArray = 4
  1430. pub aya::maps::MapType::ProgramArray = 3
  1431. pub aya::maps::MapType::Queue = 22
  1432. pub aya::maps::MapType::ReuseportSockArray = 20
  1433. pub aya::maps::MapType::RingBuf = 27
  1434. pub aya::maps::MapType::SkStorage = 24
  1435. pub aya::maps::MapType::SockHash = 18
  1436. pub aya::maps::MapType::SockMap = 15
  1437. pub aya::maps::MapType::Stack = 23
  1438. pub aya::maps::MapType::StackTrace = 7
  1439. pub aya::maps::MapType::StructOps = 26
  1440. pub aya::maps::MapType::TaskStorage = 29
  1441. pub aya::maps::MapType::Unspecified = 0
  1442. pub aya::maps::MapType::UserRingBuf = 31
  1443. pub aya::maps::MapType::XskMap = 17
  1444. impl core::clone::Clone for aya::maps::MapType
  1445. pub fn aya::maps::MapType::clone(&self) -> aya::maps::MapType
  1446. impl core::cmp::PartialEq for aya::maps::MapType
  1447. pub fn aya::maps::MapType::eq(&self, other: &aya::maps::MapType) -> bool
  1448. impl core::convert::TryFrom<aya_obj::generated::linux_bindings_x86_64::bpf_map_type> for aya::maps::MapType
  1449. pub type aya::maps::MapType::Error = aya::maps::MapError
  1450. pub fn aya::maps::MapType::try_from(map_type: aya_obj::generated::linux_bindings_x86_64::bpf_map_type) -> core::result::Result<Self, Self::Error>
  1451. impl core::fmt::Debug for aya::maps::MapType
  1452. pub fn aya::maps::MapType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1453. impl core::marker::Copy for aya::maps::MapType
  1454. impl core::marker::StructuralPartialEq for aya::maps::MapType
  1455. impl core::marker::Freeze for aya::maps::MapType
  1456. impl core::marker::Send for aya::maps::MapType
  1457. impl core::marker::Sync for aya::maps::MapType
  1458. impl core::marker::Unpin for aya::maps::MapType
  1459. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapType
  1460. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapType
  1461. impl<T, U> core::convert::Into<U> for aya::maps::MapType where U: core::convert::From<T>
  1462. pub fn aya::maps::MapType::into(self) -> U
  1463. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapType where U: core::convert::Into<T>
  1464. pub type aya::maps::MapType::Error = core::convert::Infallible
  1465. pub fn aya::maps::MapType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1466. impl<T, U> core::convert::TryInto<U> for aya::maps::MapType where U: core::convert::TryFrom<T>
  1467. pub type aya::maps::MapType::Error = <U as core::convert::TryFrom<T>>::Error
  1468. pub fn aya::maps::MapType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1469. impl<T> alloc::borrow::ToOwned for aya::maps::MapType where T: core::clone::Clone
  1470. pub type aya::maps::MapType::Owned = T
  1471. pub fn aya::maps::MapType::clone_into(&self, target: &mut T)
  1472. pub fn aya::maps::MapType::to_owned(&self) -> T
  1473. impl<T> core::any::Any for aya::maps::MapType where T: 'static + ?core::marker::Sized
  1474. pub fn aya::maps::MapType::type_id(&self) -> core::any::TypeId
  1475. impl<T> core::borrow::Borrow<T> for aya::maps::MapType where T: ?core::marker::Sized
  1476. pub fn aya::maps::MapType::borrow(&self) -> &T
  1477. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapType where T: ?core::marker::Sized
  1478. pub fn aya::maps::MapType::borrow_mut(&mut self) -> &mut T
  1479. impl<T> core::clone::CloneToUninit for aya::maps::MapType where T: core::clone::Clone
  1480. pub unsafe fn aya::maps::MapType::clone_to_uninit(&self, dest: *mut u8)
  1481. impl<T> core::convert::From<T> for aya::maps::MapType
  1482. pub fn aya::maps::MapType::from(t: T) -> T
  1483. pub struct aya::maps::Array<T, V: aya::Pod>
  1484. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  1485. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  1486. pub fn aya::maps::array::Array<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<V, aya::maps::MapError>> + '_
  1487. pub fn aya::maps::array::Array<T, V>::len(&self) -> u32
  1488. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  1489. pub fn aya::maps::array::Array<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1490. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  1491. pub fn aya::maps::array::Array<T, V>::set(&mut self, index: u32, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1492. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V>
  1493. pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1494. pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1495. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V>
  1496. pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1497. pub fn aya::maps::array::Array<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1498. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, V> for aya::maps::array::Array<T, V>
  1499. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32) -> core::result::Result<V, aya::maps::MapError>
  1500. pub fn aya::maps::array::Array<T, V>::map(&self) -> &aya::maps::MapData
  1501. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::array::Array<aya::maps::MapData, V>
  1502. pub type aya::maps::array::Array<aya::maps::MapData, V>::Error = aya::maps::MapError
  1503. pub fn aya::maps::array::Array<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1504. impl<T, V> core::marker::Freeze for aya::maps::array::Array<T, V> where T: core::marker::Freeze
  1505. impl<T, V> core::marker::Send for aya::maps::array::Array<T, V> where T: core::marker::Send, V: core::marker::Send
  1506. impl<T, V> core::marker::Sync for aya::maps::array::Array<T, V> where T: core::marker::Sync, V: core::marker::Sync
  1507. impl<T, V> core::marker::Unpin for aya::maps::array::Array<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  1508. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1509. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1510. impl<T, U> core::convert::Into<U> for aya::maps::array::Array<T, V> where U: core::convert::From<T>
  1511. pub fn aya::maps::array::Array<T, V>::into(self) -> U
  1512. impl<T, U> core::convert::TryFrom<U> for aya::maps::array::Array<T, V> where U: core::convert::Into<T>
  1513. pub type aya::maps::array::Array<T, V>::Error = core::convert::Infallible
  1514. pub fn aya::maps::array::Array<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1515. impl<T, U> core::convert::TryInto<U> for aya::maps::array::Array<T, V> where U: core::convert::TryFrom<T>
  1516. pub type aya::maps::array::Array<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1517. pub fn aya::maps::array::Array<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1518. impl<T> core::any::Any for aya::maps::array::Array<T, V> where T: 'static + ?core::marker::Sized
  1519. pub fn aya::maps::array::Array<T, V>::type_id(&self) -> core::any::TypeId
  1520. impl<T> core::borrow::Borrow<T> for aya::maps::array::Array<T, V> where T: ?core::marker::Sized
  1521. pub fn aya::maps::array::Array<T, V>::borrow(&self) -> &T
  1522. impl<T> core::borrow::BorrowMut<T> for aya::maps::array::Array<T, V> where T: ?core::marker::Sized
  1523. pub fn aya::maps::array::Array<T, V>::borrow_mut(&mut self) -> &mut T
  1524. impl<T> core::convert::From<T> for aya::maps::array::Array<T, V>
  1525. pub fn aya::maps::array::Array<T, V>::from(t: T) -> T
  1526. pub struct aya::maps::AsyncPerfEventArray<T>
  1527. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::AsyncPerfEventArray<T>
  1528. pub fn aya::maps::perf::AsyncPerfEventArray<T>::open(&mut self, index: u32, page_count: core::option::Option<usize>) -> core::result::Result<aya::maps::perf::AsyncPerfEventArrayBuffer<T>, aya::maps::perf::PerfBufferError>
  1529. pub fn aya::maps::perf::AsyncPerfEventArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1530. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>
  1531. pub type aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  1532. pub fn aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1533. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>
  1534. pub type aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1535. pub fn aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1536. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>
  1537. pub type aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1538. pub fn aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1539. impl<T> core::marker::Freeze for aya::maps::perf::AsyncPerfEventArray<T>
  1540. impl<T> core::marker::Send for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  1541. impl<T> core::marker::Sync for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  1542. impl<T> core::marker::Unpin for aya::maps::perf::AsyncPerfEventArray<T>
  1543. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1544. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1545. impl<T, U> core::convert::Into<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::From<T>
  1546. pub fn aya::maps::perf::AsyncPerfEventArray<T>::into(self) -> U
  1547. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::Into<T>
  1548. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = core::convert::Infallible
  1549. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1550. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::TryFrom<T>
  1551. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1552. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1553. impl<T> core::any::Any for aya::maps::perf::AsyncPerfEventArray<T> where T: 'static + ?core::marker::Sized
  1554. pub fn aya::maps::perf::AsyncPerfEventArray<T>::type_id(&self) -> core::any::TypeId
  1555. impl<T> core::borrow::Borrow<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: ?core::marker::Sized
  1556. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow(&self) -> &T
  1557. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: ?core::marker::Sized
  1558. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  1559. impl<T> core::convert::From<T> for aya::maps::perf::AsyncPerfEventArray<T>
  1560. pub fn aya::maps::perf::AsyncPerfEventArray<T>::from(t: T) -> T
  1561. pub struct aya::maps::BloomFilter<T, V: aya::Pod>
  1562. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  1563. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::contains(&self, value: &V, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1564. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  1565. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1566. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  1567. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::insert(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1568. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>
  1569. pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1570. pub fn aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1571. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>
  1572. pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1573. pub fn aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1574. impl<T: core::fmt::Debug, V: core::fmt::Debug + aya::Pod> core::fmt::Debug for aya::maps::bloom_filter::BloomFilter<T, V>
  1575. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1576. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>
  1577. pub type aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::Error = aya::maps::MapError
  1578. pub fn aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1579. impl<T, V> core::marker::Freeze for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Freeze
  1580. impl<T, V> core::marker::Send for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Send, V: core::marker::Send
  1581. impl<T, V> core::marker::Sync for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sync, V: core::marker::Sync
  1582. impl<T, V> core::marker::Unpin for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  1583. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1584. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1585. impl<T, U> core::convert::Into<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::From<T>
  1586. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::into(self) -> U
  1587. impl<T, U> core::convert::TryFrom<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::Into<T>
  1588. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = core::convert::Infallible
  1589. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1590. impl<T, U> core::convert::TryInto<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::TryFrom<T>
  1591. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1592. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1593. impl<T> core::any::Any for aya::maps::bloom_filter::BloomFilter<T, V> where T: 'static + ?core::marker::Sized
  1594. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::type_id(&self) -> core::any::TypeId
  1595. impl<T> core::borrow::Borrow<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: ?core::marker::Sized
  1596. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow(&self) -> &T
  1597. impl<T> core::borrow::BorrowMut<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: ?core::marker::Sized
  1598. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow_mut(&mut self) -> &mut T
  1599. impl<T> core::convert::From<T> for aya::maps::bloom_filter::BloomFilter<T, V>
  1600. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::from(t: T) -> T
  1601. pub struct aya::maps::CpuMap<T>
  1602. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  1603. pub fn aya::maps::CpuMap<T>::get(&self, cpu_index: u32, flags: u64) -> core::result::Result<aya::maps::xdp::cpu_map::CpuMapValue, aya::maps::MapError>
  1604. pub fn aya::maps::CpuMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::xdp::cpu_map::CpuMapValue, aya::maps::MapError>> + '_
  1605. pub fn aya::maps::CpuMap<T>::len(&self) -> u32
  1606. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  1607. pub fn aya::maps::CpuMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1608. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::CpuMap<T>
  1609. pub fn aya::maps::CpuMap<T>::set(&mut self, cpu_index: u32, queue_size: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1610. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::CpuMap<aya::maps::MapData>
  1611. pub type aya::maps::CpuMap<aya::maps::MapData>::Error = aya::maps::MapError
  1612. pub fn aya::maps::CpuMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1613. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::CpuMap<&'a aya::maps::MapData>
  1614. pub type aya::maps::CpuMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1615. pub fn aya::maps::CpuMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1616. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::CpuMap<&'a mut aya::maps::MapData>
  1617. pub type aya::maps::CpuMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1618. pub fn aya::maps::CpuMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1619. impl<T> core::marker::Freeze for aya::maps::CpuMap<T> where T: core::marker::Freeze
  1620. impl<T> core::marker::Send for aya::maps::CpuMap<T> where T: core::marker::Send
  1621. impl<T> core::marker::Sync for aya::maps::CpuMap<T> where T: core::marker::Sync
  1622. impl<T> core::marker::Unpin for aya::maps::CpuMap<T> where T: core::marker::Unpin
  1623. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1624. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1625. impl<T, U> core::convert::Into<U> for aya::maps::CpuMap<T> where U: core::convert::From<T>
  1626. pub fn aya::maps::CpuMap<T>::into(self) -> U
  1627. impl<T, U> core::convert::TryFrom<U> for aya::maps::CpuMap<T> where U: core::convert::Into<T>
  1628. pub type aya::maps::CpuMap<T>::Error = core::convert::Infallible
  1629. pub fn aya::maps::CpuMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1630. impl<T, U> core::convert::TryInto<U> for aya::maps::CpuMap<T> where U: core::convert::TryFrom<T>
  1631. pub type aya::maps::CpuMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1632. pub fn aya::maps::CpuMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1633. impl<T> core::any::Any for aya::maps::CpuMap<T> where T: 'static + ?core::marker::Sized
  1634. pub fn aya::maps::CpuMap<T>::type_id(&self) -> core::any::TypeId
  1635. impl<T> core::borrow::Borrow<T> for aya::maps::CpuMap<T> where T: ?core::marker::Sized
  1636. pub fn aya::maps::CpuMap<T>::borrow(&self) -> &T
  1637. impl<T> core::borrow::BorrowMut<T> for aya::maps::CpuMap<T> where T: ?core::marker::Sized
  1638. pub fn aya::maps::CpuMap<T>::borrow_mut(&mut self) -> &mut T
  1639. impl<T> core::convert::From<T> for aya::maps::CpuMap<T>
  1640. pub fn aya::maps::CpuMap<T>::from(t: T) -> T
  1641. pub struct aya::maps::DevMap<T>
  1642. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  1643. pub fn aya::maps::DevMap<T>::get(&self, index: u32, flags: u64) -> core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>
  1644. pub fn aya::maps::DevMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>> + '_
  1645. pub fn aya::maps::DevMap<T>::len(&self) -> u32
  1646. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  1647. pub fn aya::maps::DevMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1648. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMap<T>
  1649. pub fn aya::maps::DevMap<T>::set(&mut self, index: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1650. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMap<aya::maps::MapData>
  1651. pub type aya::maps::DevMap<aya::maps::MapData>::Error = aya::maps::MapError
  1652. pub fn aya::maps::DevMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1653. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMap<&'a aya::maps::MapData>
  1654. pub type aya::maps::DevMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1655. pub fn aya::maps::DevMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1656. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMap<&'a mut aya::maps::MapData>
  1657. pub type aya::maps::DevMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1658. pub fn aya::maps::DevMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1659. impl<T> core::marker::Freeze for aya::maps::DevMap<T> where T: core::marker::Freeze
  1660. impl<T> core::marker::Send for aya::maps::DevMap<T> where T: core::marker::Send
  1661. impl<T> core::marker::Sync for aya::maps::DevMap<T> where T: core::marker::Sync
  1662. impl<T> core::marker::Unpin for aya::maps::DevMap<T> where T: core::marker::Unpin
  1663. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1664. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1665. impl<T, U> core::convert::Into<U> for aya::maps::DevMap<T> where U: core::convert::From<T>
  1666. pub fn aya::maps::DevMap<T>::into(self) -> U
  1667. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMap<T> where U: core::convert::Into<T>
  1668. pub type aya::maps::DevMap<T>::Error = core::convert::Infallible
  1669. pub fn aya::maps::DevMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1670. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMap<T> where U: core::convert::TryFrom<T>
  1671. pub type aya::maps::DevMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1672. pub fn aya::maps::DevMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1673. impl<T> core::any::Any for aya::maps::DevMap<T> where T: 'static + ?core::marker::Sized
  1674. pub fn aya::maps::DevMap<T>::type_id(&self) -> core::any::TypeId
  1675. impl<T> core::borrow::Borrow<T> for aya::maps::DevMap<T> where T: ?core::marker::Sized
  1676. pub fn aya::maps::DevMap<T>::borrow(&self) -> &T
  1677. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMap<T> where T: ?core::marker::Sized
  1678. pub fn aya::maps::DevMap<T>::borrow_mut(&mut self) -> &mut T
  1679. impl<T> core::convert::From<T> for aya::maps::DevMap<T>
  1680. pub fn aya::maps::DevMap<T>::from(t: T) -> T
  1681. pub struct aya::maps::DevMapHash<T>
  1682. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1683. pub fn aya::maps::DevMapHash<T>::get(&self, key: u32, flags: u64) -> core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>
  1684. pub fn aya::maps::DevMapHash<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::xdp::dev_map::DevMapValue, Self>
  1685. pub fn aya::maps::DevMapHash<T>::keys(&self) -> aya::maps::MapKeys<'_, u32>
  1686. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1687. pub fn aya::maps::DevMapHash<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1688. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1689. pub fn aya::maps::DevMapHash<T>::insert(&mut self, key: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1690. pub fn aya::maps::DevMapHash<T>::remove(&mut self, key: u32) -> core::result::Result<(), aya::maps::MapError>
  1691. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMapHash<aya::maps::MapData>
  1692. pub type aya::maps::DevMapHash<aya::maps::MapData>::Error = aya::maps::MapError
  1693. pub fn aya::maps::DevMapHash<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1694. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMapHash<&'a aya::maps::MapData>
  1695. pub type aya::maps::DevMapHash<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1696. pub fn aya::maps::DevMapHash<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1697. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMapHash<&'a mut aya::maps::MapData>
  1698. pub type aya::maps::DevMapHash<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1699. pub fn aya::maps::DevMapHash<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1700. impl<T> core::marker::Freeze for aya::maps::DevMapHash<T> where T: core::marker::Freeze
  1701. impl<T> core::marker::Send for aya::maps::DevMapHash<T> where T: core::marker::Send
  1702. impl<T> core::marker::Sync for aya::maps::DevMapHash<T> where T: core::marker::Sync
  1703. impl<T> core::marker::Unpin for aya::maps::DevMapHash<T> where T: core::marker::Unpin
  1704. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1705. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::UnwindSafe
  1706. impl<T, U> core::convert::Into<U> for aya::maps::DevMapHash<T> where U: core::convert::From<T>
  1707. pub fn aya::maps::DevMapHash<T>::into(self) -> U
  1708. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMapHash<T> where U: core::convert::Into<T>
  1709. pub type aya::maps::DevMapHash<T>::Error = core::convert::Infallible
  1710. pub fn aya::maps::DevMapHash<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1711. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMapHash<T> where U: core::convert::TryFrom<T>
  1712. pub type aya::maps::DevMapHash<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1713. pub fn aya::maps::DevMapHash<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1714. impl<T> core::any::Any for aya::maps::DevMapHash<T> where T: 'static + ?core::marker::Sized
  1715. pub fn aya::maps::DevMapHash<T>::type_id(&self) -> core::any::TypeId
  1716. impl<T> core::borrow::Borrow<T> for aya::maps::DevMapHash<T> where T: ?core::marker::Sized
  1717. pub fn aya::maps::DevMapHash<T>::borrow(&self) -> &T
  1718. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMapHash<T> where T: ?core::marker::Sized
  1719. pub fn aya::maps::DevMapHash<T>::borrow_mut(&mut self) -> &mut T
  1720. impl<T> core::convert::From<T> for aya::maps::DevMapHash<T>
  1721. pub fn aya::maps::DevMapHash<T>::from(t: T) -> T
  1722. pub struct aya::maps::HashMap<T, K, V>
  1723. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  1724. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  1725. pub fn aya::maps::hash_map::HashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, V, Self>
  1726. pub fn aya::maps::hash_map::HashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  1727. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  1728. pub fn aya::maps::hash_map::HashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1729. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  1730. pub fn aya::maps::hash_map::HashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1731. pub fn aya::maps::hash_map::HashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  1732. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>
  1733. pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1734. pub fn aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1735. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>
  1736. pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1737. pub fn aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1738. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>
  1739. pub type aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1740. pub fn aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1741. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, V> for aya::maps::hash_map::HashMap<T, K, V>
  1742. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  1743. pub fn aya::maps::hash_map::HashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  1744. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::hash_map::HashMap<T, K, V>
  1745. pub fn aya::maps::hash_map::HashMap<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1746. impl<T, K, V> core::marker::Freeze for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Freeze
  1747. impl<T, K, V> core::marker::Send for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  1748. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  1749. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  1750. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1751. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1752. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::From<T>
  1753. pub fn aya::maps::hash_map::HashMap<T, K, V>::into(self) -> U
  1754. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::Into<T>
  1755. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = core::convert::Infallible
  1756. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1757. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::TryFrom<T>
  1758. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1759. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1760. impl<T> core::any::Any for aya::maps::hash_map::HashMap<T, K, V> where T: 'static + ?core::marker::Sized
  1761. pub fn aya::maps::hash_map::HashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  1762. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::HashMap<T, K, V> where T: ?core::marker::Sized
  1763. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow(&self) -> &T
  1764. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::HashMap<T, K, V> where T: ?core::marker::Sized
  1765. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  1766. impl<T> core::convert::From<T> for aya::maps::hash_map::HashMap<T, K, V>
  1767. pub fn aya::maps::hash_map::HashMap<T, K, V>::from(t: T) -> T
  1768. pub struct aya::maps::LpmTrie<T, K, V>
  1769. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  1770. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  1771. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, aya::maps::lpm_trie::Key<K>, V, Self>
  1772. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, aya::maps::lpm_trie::Key<K>>
  1773. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  1774. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1775. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  1776. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::insert(&mut self, key: &aya::maps::lpm_trie::Key<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1777. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::remove(&mut self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<(), aya::maps::MapError>
  1778. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>
  1779. pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1780. pub fn aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1781. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>
  1782. pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1783. pub fn aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1784. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>
  1785. pub type aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1786. pub fn aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1787. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  1788. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  1789. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  1790. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::lpm_trie::LpmTrie<T, K, V>
  1791. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1792. impl<T, K, V> core::marker::Freeze for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Freeze
  1793. impl<T, K, V> core::marker::Send for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  1794. impl<T, K, V> core::marker::Sync for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  1795. impl<T, K, V> core::marker::Unpin for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  1796. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1797. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1798. impl<T, U> core::convert::Into<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::From<T>
  1799. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::into(self) -> U
  1800. impl<T, U> core::convert::TryFrom<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::Into<T>
  1801. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = core::convert::Infallible
  1802. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1803. impl<T, U> core::convert::TryInto<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::TryFrom<T>
  1804. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1805. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1806. impl<T> core::any::Any for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: 'static + ?core::marker::Sized
  1807. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::type_id(&self) -> core::any::TypeId
  1808. impl<T> core::borrow::Borrow<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: ?core::marker::Sized
  1809. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow(&self) -> &T
  1810. impl<T> core::borrow::BorrowMut<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: ?core::marker::Sized
  1811. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow_mut(&mut self) -> &mut T
  1812. impl<T> core::convert::From<T> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  1813. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::from(t: T) -> T
  1814. pub struct aya::maps::MapData
  1815. impl aya::maps::MapData
  1816. pub fn aya::maps::MapData::create(obj: aya_obj::maps::Map, name: &str, btf_fd: core::option::Option<std::os::fd::owned::BorrowedFd<'_>>) -> core::result::Result<Self, aya::maps::MapError>
  1817. pub fn aya::maps::MapData::fd(&self) -> &aya::maps::MapFd
  1818. pub fn aya::maps::MapData::from_fd(fd: std::os::fd::owned::OwnedFd) -> core::result::Result<Self, aya::maps::MapError>
  1819. pub fn aya::maps::MapData::from_id(id: u32) -> core::result::Result<Self, aya::maps::MapError>
  1820. pub fn aya::maps::MapData::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::maps::MapError>
  1821. pub fn aya::maps::MapData::info(&self) -> core::result::Result<aya::maps::MapInfo, aya::maps::MapError>
  1822. pub fn aya::maps::MapData::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1823. impl core::fmt::Debug for aya::maps::MapData
  1824. pub fn aya::maps::MapData::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1825. impl core::marker::Freeze for aya::maps::MapData
  1826. impl core::marker::Send for aya::maps::MapData
  1827. impl core::marker::Sync for aya::maps::MapData
  1828. impl core::marker::Unpin for aya::maps::MapData
  1829. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapData
  1830. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapData
  1831. impl<T, U> core::convert::Into<U> for aya::maps::MapData where U: core::convert::From<T>
  1832. pub fn aya::maps::MapData::into(self) -> U
  1833. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapData where U: core::convert::Into<T>
  1834. pub type aya::maps::MapData::Error = core::convert::Infallible
  1835. pub fn aya::maps::MapData::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1836. impl<T, U> core::convert::TryInto<U> for aya::maps::MapData where U: core::convert::TryFrom<T>
  1837. pub type aya::maps::MapData::Error = <U as core::convert::TryFrom<T>>::Error
  1838. pub fn aya::maps::MapData::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1839. impl<T> core::any::Any for aya::maps::MapData where T: 'static + ?core::marker::Sized
  1840. pub fn aya::maps::MapData::type_id(&self) -> core::any::TypeId
  1841. impl<T> core::borrow::Borrow<T> for aya::maps::MapData where T: ?core::marker::Sized
  1842. pub fn aya::maps::MapData::borrow(&self) -> &T
  1843. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapData where T: ?core::marker::Sized
  1844. pub fn aya::maps::MapData::borrow_mut(&mut self) -> &mut T
  1845. impl<T> core::convert::From<T> for aya::maps::MapData
  1846. pub fn aya::maps::MapData::from(t: T) -> T
  1847. pub struct aya::maps::MapFd
  1848. impl core::fmt::Debug for aya::maps::MapFd
  1849. pub fn aya::maps::MapFd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1850. impl std::os::fd::owned::AsFd for aya::maps::MapFd
  1851. pub fn aya::maps::MapFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  1852. impl core::marker::Freeze for aya::maps::MapFd
  1853. impl core::marker::Send for aya::maps::MapFd
  1854. impl core::marker::Sync for aya::maps::MapFd
  1855. impl core::marker::Unpin for aya::maps::MapFd
  1856. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapFd
  1857. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapFd
  1858. impl<T, U> core::convert::Into<U> for aya::maps::MapFd where U: core::convert::From<T>
  1859. pub fn aya::maps::MapFd::into(self) -> U
  1860. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapFd where U: core::convert::Into<T>
  1861. pub type aya::maps::MapFd::Error = core::convert::Infallible
  1862. pub fn aya::maps::MapFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1863. impl<T, U> core::convert::TryInto<U> for aya::maps::MapFd where U: core::convert::TryFrom<T>
  1864. pub type aya::maps::MapFd::Error = <U as core::convert::TryFrom<T>>::Error
  1865. pub fn aya::maps::MapFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1866. impl<T> core::any::Any for aya::maps::MapFd where T: 'static + ?core::marker::Sized
  1867. pub fn aya::maps::MapFd::type_id(&self) -> core::any::TypeId
  1868. impl<T> core::borrow::Borrow<T> for aya::maps::MapFd where T: ?core::marker::Sized
  1869. pub fn aya::maps::MapFd::borrow(&self) -> &T
  1870. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapFd where T: ?core::marker::Sized
  1871. pub fn aya::maps::MapFd::borrow_mut(&mut self) -> &mut T
  1872. impl<T> core::convert::From<T> for aya::maps::MapFd
  1873. pub fn aya::maps::MapFd::from(t: T) -> T
  1874. pub struct aya::maps::MapInfo(_)
  1875. impl aya::maps::MapInfo
  1876. pub fn aya::maps::MapInfo::fd(&self) -> core::result::Result<aya::maps::MapFd, aya::maps::MapError>
  1877. pub fn aya::maps::MapInfo::from_id(id: u32) -> core::result::Result<Self, aya::maps::MapError>
  1878. pub fn aya::maps::MapInfo::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::maps::MapError>
  1879. pub fn aya::maps::MapInfo::id(&self) -> u32
  1880. pub fn aya::maps::MapInfo::key_size(&self) -> u32
  1881. pub fn aya::maps::MapInfo::map_flags(&self) -> u32
  1882. pub fn aya::maps::MapInfo::map_type(&self) -> core::result::Result<aya::maps::MapType, aya::maps::MapError>
  1883. pub fn aya::maps::MapInfo::max_entries(&self) -> u32
  1884. pub fn aya::maps::MapInfo::name(&self) -> &[u8]
  1885. pub fn aya::maps::MapInfo::name_as_str(&self) -> core::option::Option<&str>
  1886. pub fn aya::maps::MapInfo::value_size(&self) -> u32
  1887. impl core::fmt::Debug for aya::maps::MapInfo
  1888. pub fn aya::maps::MapInfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1889. impl core::marker::Freeze for aya::maps::MapInfo
  1890. impl core::marker::Send for aya::maps::MapInfo
  1891. impl core::marker::Sync for aya::maps::MapInfo
  1892. impl core::marker::Unpin for aya::maps::MapInfo
  1893. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapInfo
  1894. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapInfo
  1895. impl<T, U> core::convert::Into<U> for aya::maps::MapInfo where U: core::convert::From<T>
  1896. pub fn aya::maps::MapInfo::into(self) -> U
  1897. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapInfo where U: core::convert::Into<T>
  1898. pub type aya::maps::MapInfo::Error = core::convert::Infallible
  1899. pub fn aya::maps::MapInfo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1900. impl<T, U> core::convert::TryInto<U> for aya::maps::MapInfo where U: core::convert::TryFrom<T>
  1901. pub type aya::maps::MapInfo::Error = <U as core::convert::TryFrom<T>>::Error
  1902. pub fn aya::maps::MapInfo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1903. impl<T> core::any::Any for aya::maps::MapInfo where T: 'static + ?core::marker::Sized
  1904. pub fn aya::maps::MapInfo::type_id(&self) -> core::any::TypeId
  1905. impl<T> core::borrow::Borrow<T> for aya::maps::MapInfo where T: ?core::marker::Sized
  1906. pub fn aya::maps::MapInfo::borrow(&self) -> &T
  1907. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapInfo where T: ?core::marker::Sized
  1908. pub fn aya::maps::MapInfo::borrow_mut(&mut self) -> &mut T
  1909. impl<T> core::convert::From<T> for aya::maps::MapInfo
  1910. pub fn aya::maps::MapInfo::from(t: T) -> T
  1911. pub struct aya::maps::MapIter<'coll, K: aya::Pod, V, I: aya::maps::IterableMap<K, V>>
  1912. impl<K: aya::Pod, V, I: aya::maps::IterableMap<K, V>> core::iter::traits::iterator::Iterator for aya::maps::MapIter<'_, K, V, I>
  1913. pub type aya::maps::MapIter<'_, K, V, I>::Item = core::result::Result<(K, V), aya::maps::MapError>
  1914. pub fn aya::maps::MapIter<'_, K, V, I>::next(&mut self) -> core::option::Option<Self::Item>
  1915. impl<'coll, K, V, I> core::marker::Freeze for aya::maps::MapIter<'coll, K, V, I> where K: core::marker::Freeze
  1916. impl<'coll, K, V, I> core::marker::Send for aya::maps::MapIter<'coll, K, V, I> where I: core::marker::Sync, V: core::marker::Send, K: core::marker::Send
  1917. impl<'coll, K, V, I> core::marker::Sync for aya::maps::MapIter<'coll, K, V, I> where I: core::marker::Sync, V: core::marker::Sync, K: core::marker::Sync
  1918. impl<'coll, K, V, I> core::marker::Unpin for aya::maps::MapIter<'coll, K, V, I> where V: core::marker::Unpin, K: core::marker::Unpin
  1919. impl<'coll, K, V, I> core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapIter<'coll, K, V, I> where I: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe
  1920. impl<'coll, K, V, I> core::panic::unwind_safe::UnwindSafe for aya::maps::MapIter<'coll, K, V, I> where I: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe
  1921. impl<I> core::iter::traits::collect::IntoIterator for aya::maps::MapIter<'coll, K, V, I> where I: core::iter::traits::iterator::Iterator
  1922. pub type aya::maps::MapIter<'coll, K, V, I>::IntoIter = I
  1923. pub type aya::maps::MapIter<'coll, K, V, I>::Item = <I as core::iter::traits::iterator::Iterator>::Item
  1924. pub fn aya::maps::MapIter<'coll, K, V, I>::into_iter(self) -> I
  1925. impl<T, U> core::convert::Into<U> for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::From<T>
  1926. pub fn aya::maps::MapIter<'coll, K, V, I>::into(self) -> U
  1927. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::Into<T>
  1928. pub type aya::maps::MapIter<'coll, K, V, I>::Error = core::convert::Infallible
  1929. pub fn aya::maps::MapIter<'coll, K, V, I>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1930. impl<T, U> core::convert::TryInto<U> for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::TryFrom<T>
  1931. pub type aya::maps::MapIter<'coll, K, V, I>::Error = <U as core::convert::TryFrom<T>>::Error
  1932. pub fn aya::maps::MapIter<'coll, K, V, I>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1933. impl<T> core::any::Any for aya::maps::MapIter<'coll, K, V, I> where T: 'static + ?core::marker::Sized
  1934. pub fn aya::maps::MapIter<'coll, K, V, I>::type_id(&self) -> core::any::TypeId
  1935. impl<T> core::borrow::Borrow<T> for aya::maps::MapIter<'coll, K, V, I> where T: ?core::marker::Sized
  1936. pub fn aya::maps::MapIter<'coll, K, V, I>::borrow(&self) -> &T
  1937. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapIter<'coll, K, V, I> where T: ?core::marker::Sized
  1938. pub fn aya::maps::MapIter<'coll, K, V, I>::borrow_mut(&mut self) -> &mut T
  1939. impl<T> core::convert::From<T> for aya::maps::MapIter<'coll, K, V, I>
  1940. pub fn aya::maps::MapIter<'coll, K, V, I>::from(t: T) -> T
  1941. pub struct aya::maps::MapKeys<'coll, K: aya::Pod>
  1942. impl<K: aya::Pod> core::iter::traits::iterator::Iterator for aya::maps::MapKeys<'_, K>
  1943. pub type aya::maps::MapKeys<'_, K>::Item = core::result::Result<K, aya::maps::MapError>
  1944. pub fn aya::maps::MapKeys<'_, K>::next(&mut self) -> core::option::Option<core::result::Result<K, aya::maps::MapError>>
  1945. impl<'coll, K> core::marker::Freeze for aya::maps::MapKeys<'coll, K> where K: core::marker::Freeze
  1946. impl<'coll, K> core::marker::Send for aya::maps::MapKeys<'coll, K> where K: core::marker::Send
  1947. impl<'coll, K> core::marker::Sync for aya::maps::MapKeys<'coll, K> where K: core::marker::Sync
  1948. impl<'coll, K> core::marker::Unpin for aya::maps::MapKeys<'coll, K> where K: core::marker::Unpin
  1949. impl<'coll, K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapKeys<'coll, K> where K: core::panic::unwind_safe::RefUnwindSafe
  1950. impl<'coll, K> core::panic::unwind_safe::UnwindSafe for aya::maps::MapKeys<'coll, K> where K: core::panic::unwind_safe::UnwindSafe
  1951. impl<I> core::iter::traits::collect::IntoIterator for aya::maps::MapKeys<'coll, K> where I: core::iter::traits::iterator::Iterator
  1952. pub type aya::maps::MapKeys<'coll, K>::IntoIter = I
  1953. pub type aya::maps::MapKeys<'coll, K>::Item = <I as core::iter::traits::iterator::Iterator>::Item
  1954. pub fn aya::maps::MapKeys<'coll, K>::into_iter(self) -> I
  1955. impl<T, U> core::convert::Into<U> for aya::maps::MapKeys<'coll, K> where U: core::convert::From<T>
  1956. pub fn aya::maps::MapKeys<'coll, K>::into(self) -> U
  1957. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapKeys<'coll, K> where U: core::convert::Into<T>
  1958. pub type aya::maps::MapKeys<'coll, K>::Error = core::convert::Infallible
  1959. pub fn aya::maps::MapKeys<'coll, K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1960. impl<T, U> core::convert::TryInto<U> for aya::maps::MapKeys<'coll, K> where U: core::convert::TryFrom<T>
  1961. pub type aya::maps::MapKeys<'coll, K>::Error = <U as core::convert::TryFrom<T>>::Error
  1962. pub fn aya::maps::MapKeys<'coll, K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1963. impl<T> core::any::Any for aya::maps::MapKeys<'coll, K> where T: 'static + ?core::marker::Sized
  1964. pub fn aya::maps::MapKeys<'coll, K>::type_id(&self) -> core::any::TypeId
  1965. impl<T> core::borrow::Borrow<T> for aya::maps::MapKeys<'coll, K> where T: ?core::marker::Sized
  1966. pub fn aya::maps::MapKeys<'coll, K>::borrow(&self) -> &T
  1967. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapKeys<'coll, K> where T: ?core::marker::Sized
  1968. pub fn aya::maps::MapKeys<'coll, K>::borrow_mut(&mut self) -> &mut T
  1969. impl<T> core::convert::From<T> for aya::maps::MapKeys<'coll, K>
  1970. pub fn aya::maps::MapKeys<'coll, K>::from(t: T) -> T
  1971. pub struct aya::maps::PerCpuArray<T, V: aya::Pod>
  1972. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  1973. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1974. pub fn aya::maps::PerCpuArray<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>> + '_
  1975. pub fn aya::maps::PerCpuArray<T, V>::len(&self) -> u32
  1976. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  1977. pub fn aya::maps::PerCpuArray<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1978. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  1979. pub fn aya::maps::PerCpuArray<T, V>::set(&mut self, index: u32, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1980. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V>
  1981. pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1982. pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1983. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>
  1984. pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1985. pub fn aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1986. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  1987. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1988. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  1989. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::PerCpuArray<aya::maps::MapData, V>
  1990. pub type aya::maps::PerCpuArray<aya::maps::MapData, V>::Error = aya::maps::MapError
  1991. pub fn aya::maps::PerCpuArray<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1992. impl<T, V> core::marker::Freeze for aya::maps::PerCpuArray<T, V> where T: core::marker::Freeze
  1993. impl<T, V> core::marker::Send for aya::maps::PerCpuArray<T, V> where T: core::marker::Send, V: core::marker::Send
  1994. impl<T, V> core::marker::Sync for aya::maps::PerCpuArray<T, V> where T: core::marker::Sync, V: core::marker::Sync
  1995. impl<T, V> core::marker::Unpin for aya::maps::PerCpuArray<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  1996. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1997. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1998. impl<T, U> core::convert::Into<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::From<T>
  1999. pub fn aya::maps::PerCpuArray<T, V>::into(self) -> U
  2000. impl<T, U> core::convert::TryFrom<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::Into<T>
  2001. pub type aya::maps::PerCpuArray<T, V>::Error = core::convert::Infallible
  2002. pub fn aya::maps::PerCpuArray<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2003. impl<T, U> core::convert::TryInto<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::TryFrom<T>
  2004. pub type aya::maps::PerCpuArray<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  2005. pub fn aya::maps::PerCpuArray<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2006. impl<T> core::any::Any for aya::maps::PerCpuArray<T, V> where T: 'static + ?core::marker::Sized
  2007. pub fn aya::maps::PerCpuArray<T, V>::type_id(&self) -> core::any::TypeId
  2008. impl<T> core::borrow::Borrow<T> for aya::maps::PerCpuArray<T, V> where T: ?core::marker::Sized
  2009. pub fn aya::maps::PerCpuArray<T, V>::borrow(&self) -> &T
  2010. impl<T> core::borrow::BorrowMut<T> for aya::maps::PerCpuArray<T, V> where T: ?core::marker::Sized
  2011. pub fn aya::maps::PerCpuArray<T, V>::borrow_mut(&mut self) -> &mut T
  2012. impl<T> core::convert::From<T> for aya::maps::PerCpuArray<T, V>
  2013. pub fn aya::maps::PerCpuArray<T, V>::from(t: T) -> T
  2014. pub struct aya::maps::PerCpuHashMap<T, K: aya::Pod, V: aya::Pod>
  2015. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2016. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2017. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, aya::maps::PerCpuValues<V>, Self>
  2018. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  2019. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2020. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2021. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2022. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2023. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  2024. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>
  2025. pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  2026. pub fn aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2027. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>
  2028. pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  2029. pub fn aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2030. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>
  2031. pub type aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  2032. pub fn aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2033. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2034. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2035. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  2036. impl<T, K, V> core::marker::Freeze for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Freeze
  2037. impl<T, K, V> core::marker::Send for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  2038. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  2039. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  2040. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  2041. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  2042. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::From<T>
  2043. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::into(self) -> U
  2044. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::Into<T>
  2045. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = core::convert::Infallible
  2046. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2047. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::TryFrom<T>
  2048. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  2049. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2050. impl<T> core::any::Any for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: 'static + ?core::marker::Sized
  2051. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  2052. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: ?core::marker::Sized
  2053. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow(&self) -> &T
  2054. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: ?core::marker::Sized
  2055. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  2056. impl<T> core::convert::From<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2057. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::from(t: T) -> T
  2058. pub struct aya::maps::PerCpuValues<T: aya::Pod>
  2059. impl<T: aya::Pod> core::convert::TryFrom<alloc::vec::Vec<T>> for aya::maps::PerCpuValues<T>
  2060. pub type aya::maps::PerCpuValues<T>::Error = std::io::error::Error
  2061. pub fn aya::maps::PerCpuValues<T>::try_from(values: alloc::vec::Vec<T>) -> core::result::Result<Self, Self::Error>
  2062. impl<T: aya::Pod> core::ops::deref::Deref for aya::maps::PerCpuValues<T>
  2063. pub type aya::maps::PerCpuValues<T>::Target = alloc::boxed::Box<[T]>
  2064. pub fn aya::maps::PerCpuValues<T>::deref(&self) -> &Self::Target
  2065. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2066. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2067. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  2068. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  2069. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2070. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  2071. impl<T: core::fmt::Debug + aya::Pod> core::fmt::Debug for aya::maps::PerCpuValues<T>
  2072. pub fn aya::maps::PerCpuValues<T>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2073. impl<T> core::marker::Freeze for aya::maps::PerCpuValues<T>
  2074. impl<T> core::marker::Send for aya::maps::PerCpuValues<T> where T: core::marker::Send
  2075. impl<T> core::marker::Sync for aya::maps::PerCpuValues<T> where T: core::marker::Sync
  2076. impl<T> core::marker::Unpin for aya::maps::PerCpuValues<T>
  2077. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::PerCpuValues<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2078. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::PerCpuValues<T> where T: core::panic::unwind_safe::UnwindSafe
  2079. impl<P, T> core::ops::deref::Receiver for aya::maps::PerCpuValues<T> where P: core::ops::deref::Deref<Target = T> + ?core::marker::Sized, T: ?core::marker::Sized
  2080. pub type aya::maps::PerCpuValues<T>::Target = T
  2081. impl<T, U> core::convert::Into<U> for aya::maps::PerCpuValues<T> where U: core::convert::From<T>
  2082. pub fn aya::maps::PerCpuValues<T>::into(self) -> U
  2083. impl<T, U> core::convert::TryFrom<U> for aya::maps::PerCpuValues<T> where U: core::convert::Into<T>
  2084. pub type aya::maps::PerCpuValues<T>::Error = core::convert::Infallible
  2085. pub fn aya::maps::PerCpuValues<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2086. impl<T, U> core::convert::TryInto<U> for aya::maps::PerCpuValues<T> where U: core::convert::TryFrom<T>
  2087. pub type aya::maps::PerCpuValues<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2088. pub fn aya::maps::PerCpuValues<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2089. impl<T> core::any::Any for aya::maps::PerCpuValues<T> where T: 'static + ?core::marker::Sized
  2090. pub fn aya::maps::PerCpuValues<T>::type_id(&self) -> core::any::TypeId
  2091. impl<T> core::borrow::Borrow<T> for aya::maps::PerCpuValues<T> where T: ?core::marker::Sized
  2092. pub fn aya::maps::PerCpuValues<T>::borrow(&self) -> &T
  2093. impl<T> core::borrow::BorrowMut<T> for aya::maps::PerCpuValues<T> where T: ?core::marker::Sized
  2094. pub fn aya::maps::PerCpuValues<T>::borrow_mut(&mut self) -> &mut T
  2095. impl<T> core::convert::From<T> for aya::maps::PerCpuValues<T>
  2096. pub fn aya::maps::PerCpuValues<T>::from(t: T) -> T
  2097. pub struct aya::maps::PerfEventArray<T>
  2098. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  2099. pub fn aya::maps::perf::PerfEventArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2100. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  2101. pub fn aya::maps::perf::PerfEventArray<T>::open(&mut self, index: u32, page_count: core::option::Option<usize>) -> core::result::Result<aya::maps::perf::PerfEventArrayBuffer<T>, aya::maps::perf::PerfBufferError>
  2102. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::PerfEventArray<aya::maps::MapData>
  2103. pub type aya::maps::perf::PerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  2104. pub fn aya::maps::perf::PerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2105. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>
  2106. pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2107. pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2108. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>
  2109. pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2110. pub fn aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2111. impl<T> core::marker::Freeze for aya::maps::perf::PerfEventArray<T>
  2112. impl<T> core::marker::Send for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  2113. impl<T> core::marker::Sync for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  2114. impl<T> core::marker::Unpin for aya::maps::perf::PerfEventArray<T>
  2115. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2116. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2117. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::From<T>
  2118. pub fn aya::maps::perf::PerfEventArray<T>::into(self) -> U
  2119. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::Into<T>
  2120. pub type aya::maps::perf::PerfEventArray<T>::Error = core::convert::Infallible
  2121. pub fn aya::maps::perf::PerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2122. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::TryFrom<T>
  2123. pub type aya::maps::perf::PerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2124. pub fn aya::maps::perf::PerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2125. impl<T> core::any::Any for aya::maps::perf::PerfEventArray<T> where T: 'static + ?core::marker::Sized
  2126. pub fn aya::maps::perf::PerfEventArray<T>::type_id(&self) -> core::any::TypeId
  2127. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfEventArray<T> where T: ?core::marker::Sized
  2128. pub fn aya::maps::perf::PerfEventArray<T>::borrow(&self) -> &T
  2129. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfEventArray<T> where T: ?core::marker::Sized
  2130. pub fn aya::maps::perf::PerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  2131. impl<T> core::convert::From<T> for aya::maps::perf::PerfEventArray<T>
  2132. pub fn aya::maps::perf::PerfEventArray<T>::from(t: T) -> T
  2133. pub struct aya::maps::ProgramArray<T>
  2134. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  2135. pub fn aya::maps::ProgramArray<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  2136. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  2137. pub fn aya::maps::ProgramArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2138. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::ProgramArray<T>
  2139. pub fn aya::maps::ProgramArray<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  2140. pub fn aya::maps::ProgramArray<T>::set(&mut self, index: u32, program: &aya::programs::ProgramFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2141. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ProgramArray<aya::maps::MapData>
  2142. pub type aya::maps::ProgramArray<aya::maps::MapData>::Error = aya::maps::MapError
  2143. pub fn aya::maps::ProgramArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2144. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData>
  2145. pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2146. pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2147. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData>
  2148. pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2149. pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2150. impl<T> core::marker::Freeze for aya::maps::ProgramArray<T> where T: core::marker::Freeze
  2151. impl<T> core::marker::Send for aya::maps::ProgramArray<T> where T: core::marker::Send
  2152. impl<T> core::marker::Sync for aya::maps::ProgramArray<T> where T: core::marker::Sync
  2153. impl<T> core::marker::Unpin for aya::maps::ProgramArray<T> where T: core::marker::Unpin
  2154. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2155. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::UnwindSafe
  2156. impl<T, U> core::convert::Into<U> for aya::maps::ProgramArray<T> where U: core::convert::From<T>
  2157. pub fn aya::maps::ProgramArray<T>::into(self) -> U
  2158. impl<T, U> core::convert::TryFrom<U> for aya::maps::ProgramArray<T> where U: core::convert::Into<T>
  2159. pub type aya::maps::ProgramArray<T>::Error = core::convert::Infallible
  2160. pub fn aya::maps::ProgramArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2161. impl<T, U> core::convert::TryInto<U> for aya::maps::ProgramArray<T> where U: core::convert::TryFrom<T>
  2162. pub type aya::maps::ProgramArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2163. pub fn aya::maps::ProgramArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2164. impl<T> core::any::Any for aya::maps::ProgramArray<T> where T: 'static + ?core::marker::Sized
  2165. pub fn aya::maps::ProgramArray<T>::type_id(&self) -> core::any::TypeId
  2166. impl<T> core::borrow::Borrow<T> for aya::maps::ProgramArray<T> where T: ?core::marker::Sized
  2167. pub fn aya::maps::ProgramArray<T>::borrow(&self) -> &T
  2168. impl<T> core::borrow::BorrowMut<T> for aya::maps::ProgramArray<T> where T: ?core::marker::Sized
  2169. pub fn aya::maps::ProgramArray<T>::borrow_mut(&mut self) -> &mut T
  2170. impl<T> core::convert::From<T> for aya::maps::ProgramArray<T>
  2171. pub fn aya::maps::ProgramArray<T>::from(t: T) -> T
  2172. pub struct aya::maps::Queue<T, V: aya::Pod>
  2173. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  2174. pub fn aya::maps::queue::Queue<T, V>::capacity(&self) -> u32
  2175. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  2176. pub fn aya::maps::queue::Queue<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2177. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  2178. pub fn aya::maps::queue::Queue<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  2179. pub fn aya::maps::queue::Queue<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2180. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V>
  2181. pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  2182. pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2183. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>
  2184. pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  2185. pub fn aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2186. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::queue::Queue<aya::maps::MapData, V>
  2187. pub type aya::maps::queue::Queue<aya::maps::MapData, V>::Error = aya::maps::MapError
  2188. pub fn aya::maps::queue::Queue<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2189. impl<T, V> core::marker::Freeze for aya::maps::queue::Queue<T, V> where T: core::marker::Freeze
  2190. impl<T, V> core::marker::Send for aya::maps::queue::Queue<T, V> where T: core::marker::Send, V: core::marker::Send
  2191. impl<T, V> core::marker::Sync for aya::maps::queue::Queue<T, V> where T: core::marker::Sync, V: core::marker::Sync
  2192. impl<T, V> core::marker::Unpin for aya::maps::queue::Queue<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  2193. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  2194. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  2195. impl<T, U> core::convert::Into<U> for aya::maps::queue::Queue<T, V> where U: core::convert::From<T>
  2196. pub fn aya::maps::queue::Queue<T, V>::into(self) -> U
  2197. impl<T, U> core::convert::TryFrom<U> for aya::maps::queue::Queue<T, V> where U: core::convert::Into<T>
  2198. pub type aya::maps::queue::Queue<T, V>::Error = core::convert::Infallible
  2199. pub fn aya::maps::queue::Queue<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2200. impl<T, U> core::convert::TryInto<U> for aya::maps::queue::Queue<T, V> where U: core::convert::TryFrom<T>
  2201. pub type aya::maps::queue::Queue<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  2202. pub fn aya::maps::queue::Queue<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2203. impl<T> core::any::Any for aya::maps::queue::Queue<T, V> where T: 'static + ?core::marker::Sized
  2204. pub fn aya::maps::queue::Queue<T, V>::type_id(&self) -> core::any::TypeId
  2205. impl<T> core::borrow::Borrow<T> for aya::maps::queue::Queue<T, V> where T: ?core::marker::Sized
  2206. pub fn aya::maps::queue::Queue<T, V>::borrow(&self) -> &T
  2207. impl<T> core::borrow::BorrowMut<T> for aya::maps::queue::Queue<T, V> where T: ?core::marker::Sized
  2208. pub fn aya::maps::queue::Queue<T, V>::borrow_mut(&mut self) -> &mut T
  2209. impl<T> core::convert::From<T> for aya::maps::queue::Queue<T, V>
  2210. pub fn aya::maps::queue::Queue<T, V>::from(t: T) -> T
  2211. pub struct aya::maps::RingBuf<T>
  2212. impl<T> aya::maps::ring_buf::RingBuf<T>
  2213. pub fn aya::maps::ring_buf::RingBuf<T>::next(&mut self) -> core::option::Option<aya::maps::ring_buf::RingBufItem<'_>>
  2214. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ring_buf::RingBuf<aya::maps::MapData>
  2215. pub type aya::maps::ring_buf::RingBuf<aya::maps::MapData>::Error = aya::maps::MapError
  2216. pub fn aya::maps::ring_buf::RingBuf<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2217. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>
  2218. pub type aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2219. pub fn aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2220. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>
  2221. pub type aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2222. pub fn aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2223. impl<T: core::borrow::Borrow<aya::maps::MapData>> std::os::fd::raw::AsRawFd for aya::maps::ring_buf::RingBuf<T>
  2224. pub fn aya::maps::ring_buf::RingBuf<T>::as_raw_fd(&self) -> std::os::fd::raw::RawFd
  2225. impl<T> core::marker::Freeze for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Freeze
  2226. impl<T> core::marker::Send for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Send
  2227. impl<T> core::marker::Sync for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Sync
  2228. impl<T> core::marker::Unpin for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Unpin
  2229. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2230. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::UnwindSafe
  2231. impl<T, U> core::convert::Into<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::From<T>
  2232. pub fn aya::maps::ring_buf::RingBuf<T>::into(self) -> U
  2233. impl<T, U> core::convert::TryFrom<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::Into<T>
  2234. pub type aya::maps::ring_buf::RingBuf<T>::Error = core::convert::Infallible
  2235. pub fn aya::maps::ring_buf::RingBuf<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2236. impl<T, U> core::convert::TryInto<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::TryFrom<T>
  2237. pub type aya::maps::ring_buf::RingBuf<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2238. pub fn aya::maps::ring_buf::RingBuf<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2239. impl<T> core::any::Any for aya::maps::ring_buf::RingBuf<T> where T: 'static + ?core::marker::Sized
  2240. pub fn aya::maps::ring_buf::RingBuf<T>::type_id(&self) -> core::any::TypeId
  2241. impl<T> core::borrow::Borrow<T> for aya::maps::ring_buf::RingBuf<T> where T: ?core::marker::Sized
  2242. pub fn aya::maps::ring_buf::RingBuf<T>::borrow(&self) -> &T
  2243. impl<T> core::borrow::BorrowMut<T> for aya::maps::ring_buf::RingBuf<T> where T: ?core::marker::Sized
  2244. pub fn aya::maps::ring_buf::RingBuf<T>::borrow_mut(&mut self) -> &mut T
  2245. impl<T> core::convert::From<T> for aya::maps::ring_buf::RingBuf<T>
  2246. pub fn aya::maps::ring_buf::RingBuf<T>::from(t: T) -> T
  2247. pub struct aya::maps::SockHash<T, K>
  2248. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  2249. pub fn aya::maps::SockHash<T, K>::fd(&self) -> &aya::maps::sock::SockMapFd
  2250. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K, flags: u64) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  2251. pub fn aya::maps::SockHash<T, K>::iter(&self) -> aya::maps::MapIter<'_, K, std::os::fd::raw::RawFd, Self>
  2252. pub fn aya::maps::SockHash<T, K>::keys(&self) -> aya::maps::MapKeys<'_, K>
  2253. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::SockHash<T, V>
  2254. pub fn aya::maps::SockHash<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2255. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  2256. pub fn aya::maps::SockHash<T, K>::insert<I: std::os::fd::raw::AsRawFd>(&mut self, key: impl core::borrow::Borrow<K>, value: I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2257. pub fn aya::maps::SockHash<T, K>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  2258. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V>
  2259. pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  2260. pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2261. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V>
  2262. pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  2263. pub fn aya::maps::SockHash<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2264. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::IterableMap<K, i32> for aya::maps::SockHash<T, K>
  2265. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  2266. pub fn aya::maps::SockHash<T, K>::map(&self) -> &aya::maps::MapData
  2267. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::SockHash<aya::maps::MapData, V>
  2268. pub type aya::maps::SockHash<aya::maps::MapData, V>::Error = aya::maps::MapError
  2269. pub fn aya::maps::SockHash<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2270. impl<T, K> core::marker::Freeze for aya::maps::SockHash<T, K> where T: core::marker::Freeze
  2271. impl<T, K> core::marker::Send for aya::maps::SockHash<T, K> where T: core::marker::Send, K: core::marker::Send
  2272. impl<T, K> core::marker::Sync for aya::maps::SockHash<T, K> where T: core::marker::Sync, K: core::marker::Sync
  2273. impl<T, K> core::marker::Unpin for aya::maps::SockHash<T, K> where T: core::marker::Unpin, K: core::marker::Unpin
  2274. impl<T, K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockHash<T, K> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe
  2275. impl<T, K> core::panic::unwind_safe::UnwindSafe for aya::maps::SockHash<T, K> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe
  2276. impl<T, U> core::convert::Into<U> for aya::maps::SockHash<T, K> where U: core::convert::From<T>
  2277. pub fn aya::maps::SockHash<T, K>::into(self) -> U
  2278. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockHash<T, K> where U: core::convert::Into<T>
  2279. pub type aya::maps::SockHash<T, K>::Error = core::convert::Infallible
  2280. pub fn aya::maps::SockHash<T, K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2281. impl<T, U> core::convert::TryInto<U> for aya::maps::SockHash<T, K> where U: core::convert::TryFrom<T>
  2282. pub type aya::maps::SockHash<T, K>::Error = <U as core::convert::TryFrom<T>>::Error
  2283. pub fn aya::maps::SockHash<T, K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2284. impl<T> core::any::Any for aya::maps::SockHash<T, K> where T: 'static + ?core::marker::Sized
  2285. pub fn aya::maps::SockHash<T, K>::type_id(&self) -> core::any::TypeId
  2286. impl<T> core::borrow::Borrow<T> for aya::maps::SockHash<T, K> where T: ?core::marker::Sized
  2287. pub fn aya::maps::SockHash<T, K>::borrow(&self) -> &T
  2288. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockHash<T, K> where T: ?core::marker::Sized
  2289. pub fn aya::maps::SockHash<T, K>::borrow_mut(&mut self) -> &mut T
  2290. impl<T> core::convert::From<T> for aya::maps::SockHash<T, K>
  2291. pub fn aya::maps::SockHash<T, K>::from(t: T) -> T
  2292. pub struct aya::maps::SockMap<T>
  2293. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  2294. pub fn aya::maps::SockMap<T>::fd(&self) -> &aya::maps::sock::SockMapFd
  2295. pub fn aya::maps::SockMap<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  2296. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  2297. pub fn aya::maps::SockMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2298. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::SockMap<T>
  2299. pub fn aya::maps::SockMap<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  2300. pub fn aya::maps::SockMap<T>::set<I: std::os::fd::raw::AsRawFd>(&mut self, index: u32, socket: &I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2301. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::SockMap<aya::maps::MapData>
  2302. pub type aya::maps::SockMap<aya::maps::MapData>::Error = aya::maps::MapError
  2303. pub fn aya::maps::SockMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2304. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData>
  2305. pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2306. pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2307. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData>
  2308. pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2309. pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2310. impl<T> core::marker::Freeze for aya::maps::SockMap<T> where T: core::marker::Freeze
  2311. impl<T> core::marker::Send for aya::maps::SockMap<T> where T: core::marker::Send
  2312. impl<T> core::marker::Sync for aya::maps::SockMap<T> where T: core::marker::Sync
  2313. impl<T> core::marker::Unpin for aya::maps::SockMap<T> where T: core::marker::Unpin
  2314. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2315. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::UnwindSafe
  2316. impl<T, U> core::convert::Into<U> for aya::maps::SockMap<T> where U: core::convert::From<T>
  2317. pub fn aya::maps::SockMap<T>::into(self) -> U
  2318. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockMap<T> where U: core::convert::Into<T>
  2319. pub type aya::maps::SockMap<T>::Error = core::convert::Infallible
  2320. pub fn aya::maps::SockMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2321. impl<T, U> core::convert::TryInto<U> for aya::maps::SockMap<T> where U: core::convert::TryFrom<T>
  2322. pub type aya::maps::SockMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2323. pub fn aya::maps::SockMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2324. impl<T> core::any::Any for aya::maps::SockMap<T> where T: 'static + ?core::marker::Sized
  2325. pub fn aya::maps::SockMap<T>::type_id(&self) -> core::any::TypeId
  2326. impl<T> core::borrow::Borrow<T> for aya::maps::SockMap<T> where T: ?core::marker::Sized
  2327. pub fn aya::maps::SockMap<T>::borrow(&self) -> &T
  2328. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockMap<T> where T: ?core::marker::Sized
  2329. pub fn aya::maps::SockMap<T>::borrow_mut(&mut self) -> &mut T
  2330. impl<T> core::convert::From<T> for aya::maps::SockMap<T>
  2331. pub fn aya::maps::SockMap<T>::from(t: T) -> T
  2332. pub struct aya::maps::Stack<T, V: aya::Pod>
  2333. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  2334. pub fn aya::maps::stack::Stack<T, V>::capacity(&self) -> u32
  2335. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  2336. pub fn aya::maps::stack::Stack<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2337. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  2338. pub fn aya::maps::stack::Stack<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  2339. pub fn aya::maps::stack::Stack<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2340. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V>
  2341. pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  2342. pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2343. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>
  2344. pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  2345. pub fn aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2346. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::stack::Stack<aya::maps::MapData, V>
  2347. pub type aya::maps::stack::Stack<aya::maps::MapData, V>::Error = aya::maps::MapError
  2348. pub fn aya::maps::stack::Stack<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2349. impl<T, V> core::marker::Freeze for aya::maps::stack::Stack<T, V> where T: core::marker::Freeze
  2350. impl<T, V> core::marker::Send for aya::maps::stack::Stack<T, V> where T: core::marker::Send, V: core::marker::Send
  2351. impl<T, V> core::marker::Sync for aya::maps::stack::Stack<T, V> where T: core::marker::Sync, V: core::marker::Sync
  2352. impl<T, V> core::marker::Unpin for aya::maps::stack::Stack<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  2353. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  2354. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  2355. impl<T, U> core::convert::Into<U> for aya::maps::stack::Stack<T, V> where U: core::convert::From<T>
  2356. pub fn aya::maps::stack::Stack<T, V>::into(self) -> U
  2357. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack::Stack<T, V> where U: core::convert::Into<T>
  2358. pub type aya::maps::stack::Stack<T, V>::Error = core::convert::Infallible
  2359. pub fn aya::maps::stack::Stack<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2360. impl<T, U> core::convert::TryInto<U> for aya::maps::stack::Stack<T, V> where U: core::convert::TryFrom<T>
  2361. pub type aya::maps::stack::Stack<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  2362. pub fn aya::maps::stack::Stack<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2363. impl<T> core::any::Any for aya::maps::stack::Stack<T, V> where T: 'static + ?core::marker::Sized
  2364. pub fn aya::maps::stack::Stack<T, V>::type_id(&self) -> core::any::TypeId
  2365. impl<T> core::borrow::Borrow<T> for aya::maps::stack::Stack<T, V> where T: ?core::marker::Sized
  2366. pub fn aya::maps::stack::Stack<T, V>::borrow(&self) -> &T
  2367. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack::Stack<T, V> where T: ?core::marker::Sized
  2368. pub fn aya::maps::stack::Stack<T, V>::borrow_mut(&mut self) -> &mut T
  2369. impl<T> core::convert::From<T> for aya::maps::stack::Stack<T, V>
  2370. pub fn aya::maps::stack::Stack<T, V>::from(t: T) -> T
  2371. pub struct aya::maps::StackTraceMap<T>
  2372. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  2373. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, stack_id: &u32, flags: u64) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  2374. pub fn aya::maps::stack_trace::StackTraceMap<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::stack_trace::StackTrace, Self>
  2375. pub fn aya::maps::stack_trace::StackTraceMap<T>::stack_ids(&self) -> aya::maps::MapKeys<'_, u32>
  2376. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  2377. pub fn aya::maps::stack_trace::StackTraceMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2378. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  2379. pub fn aya::maps::stack_trace::StackTraceMap<T>::remove(&mut self, stack_id: &u32) -> core::result::Result<(), aya::maps::MapError>
  2380. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>
  2381. pub type aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::Error = aya::maps::MapError
  2382. pub fn aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2383. impl<'a, T: core::borrow::Borrow<aya::maps::MapData>> core::iter::traits::collect::IntoIterator for &'a aya::maps::stack_trace::StackTraceMap<T>
  2384. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::IntoIter = aya::maps::MapIter<'a, u32, aya::maps::stack_trace::StackTrace, aya::maps::stack_trace::StackTraceMap<T>>
  2385. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::Item = core::result::Result<(u32, aya::maps::stack_trace::StackTrace), aya::maps::MapError>
  2386. pub fn &'a aya::maps::stack_trace::StackTraceMap<T>::into_iter(self) -> Self::IntoIter
  2387. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>
  2388. pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2389. pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2390. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>
  2391. pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2392. pub fn aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2393. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  2394. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  2395. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  2396. impl<T: core::fmt::Debug> core::fmt::Debug for aya::maps::stack_trace::StackTraceMap<T>
  2397. pub fn aya::maps::stack_trace::StackTraceMap<T>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2398. impl<T> core::marker::Freeze for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Freeze
  2399. impl<T> core::marker::Send for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Send
  2400. impl<T> core::marker::Sync for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sync
  2401. impl<T> core::marker::Unpin for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Unpin
  2402. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2403. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::UnwindSafe
  2404. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::From<T>
  2405. pub fn aya::maps::stack_trace::StackTraceMap<T>::into(self) -> U
  2406. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::Into<T>
  2407. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = core::convert::Infallible
  2408. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2409. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::TryFrom<T>
  2410. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2411. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2412. impl<T> core::any::Any for aya::maps::stack_trace::StackTraceMap<T> where T: 'static + ?core::marker::Sized
  2413. pub fn aya::maps::stack_trace::StackTraceMap<T>::type_id(&self) -> core::any::TypeId
  2414. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackTraceMap<T> where T: ?core::marker::Sized
  2415. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow(&self) -> &T
  2416. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackTraceMap<T> where T: ?core::marker::Sized
  2417. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow_mut(&mut self) -> &mut T
  2418. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackTraceMap<T>
  2419. pub fn aya::maps::stack_trace::StackTraceMap<T>::from(t: T) -> T
  2420. pub struct aya::maps::XskMap<T>
  2421. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  2422. pub fn aya::maps::XskMap<T>::len(&self) -> u32
  2423. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  2424. pub fn aya::maps::XskMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2425. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::XskMap<T>
  2426. pub fn aya::maps::XskMap<T>::set(&mut self, index: u32, socket_fd: impl std::os::fd::raw::AsRawFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2427. pub fn aya::maps::XskMap<T>::unset(&mut self, index: u32) -> core::result::Result<(), aya::maps::MapError>
  2428. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::XskMap<aya::maps::MapData>
  2429. pub type aya::maps::XskMap<aya::maps::MapData>::Error = aya::maps::MapError
  2430. pub fn aya::maps::XskMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2431. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::XskMap<&'a aya::maps::MapData>
  2432. pub type aya::maps::XskMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2433. pub fn aya::maps::XskMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2434. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::XskMap<&'a mut aya::maps::MapData>
  2435. pub type aya::maps::XskMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2436. pub fn aya::maps::XskMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2437. impl<T> core::marker::Freeze for aya::maps::XskMap<T> where T: core::marker::Freeze
  2438. impl<T> core::marker::Send for aya::maps::XskMap<T> where T: core::marker::Send
  2439. impl<T> core::marker::Sync for aya::maps::XskMap<T> where T: core::marker::Sync
  2440. impl<T> core::marker::Unpin for aya::maps::XskMap<T> where T: core::marker::Unpin
  2441. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2442. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::UnwindSafe
  2443. impl<T, U> core::convert::Into<U> for aya::maps::XskMap<T> where U: core::convert::From<T>
  2444. pub fn aya::maps::XskMap<T>::into(self) -> U
  2445. impl<T, U> core::convert::TryFrom<U> for aya::maps::XskMap<T> where U: core::convert::Into<T>
  2446. pub type aya::maps::XskMap<T>::Error = core::convert::Infallible
  2447. pub fn aya::maps::XskMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2448. impl<T, U> core::convert::TryInto<U> for aya::maps::XskMap<T> where U: core::convert::TryFrom<T>
  2449. pub type aya::maps::XskMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2450. pub fn aya::maps::XskMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2451. impl<T> core::any::Any for aya::maps::XskMap<T> where T: 'static + ?core::marker::Sized
  2452. pub fn aya::maps::XskMap<T>::type_id(&self) -> core::any::TypeId
  2453. impl<T> core::borrow::Borrow<T> for aya::maps::XskMap<T> where T: ?core::marker::Sized
  2454. pub fn aya::maps::XskMap<T>::borrow(&self) -> &T
  2455. impl<T> core::borrow::BorrowMut<T> for aya::maps::XskMap<T> where T: ?core::marker::Sized
  2456. pub fn aya::maps::XskMap<T>::borrow_mut(&mut self) -> &mut T
  2457. impl<T> core::convert::From<T> for aya::maps::XskMap<T>
  2458. pub fn aya::maps::XskMap<T>::from(t: T) -> T
  2459. pub trait aya::maps::IterableMap<K: aya::Pod, V>
  2460. pub fn aya::maps::IterableMap::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  2461. pub fn aya::maps::IterableMap::map(&self) -> &aya::maps::MapData
  2462. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, V> for aya::maps::hash_map::HashMap<T, K, V>
  2463. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  2464. pub fn aya::maps::hash_map::HashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  2465. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2466. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2467. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  2468. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  2469. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  2470. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  2471. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::IterableMap<K, i32> for aya::maps::SockHash<T, K>
  2472. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  2473. pub fn aya::maps::SockHash<T, K>::map(&self) -> &aya::maps::MapData
  2474. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, V> for aya::maps::array::Array<T, V>
  2475. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32) -> core::result::Result<V, aya::maps::MapError>
  2476. pub fn aya::maps::array::Array<T, V>::map(&self) -> &aya::maps::MapData
  2477. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  2478. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2479. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  2480. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  2481. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  2482. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  2483. pub fn aya::maps::loaded_maps() -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::MapInfo, aya::maps::MapError>>
  2484. pub mod aya::pin
  2485. pub enum aya::pin::PinError
  2486. pub aya::pin::PinError::InvalidPinPath
  2487. pub aya::pin::PinError::InvalidPinPath::error: alloc::ffi::c_str::NulError
  2488. pub aya::pin::PinError::InvalidPinPath::path: std::path::PathBuf
  2489. pub aya::pin::PinError::NoFd
  2490. pub aya::pin::PinError::NoFd::name: alloc::string::String
  2491. pub aya::pin::PinError::SyscallError(aya::sys::SyscallError)
  2492. impl core::convert::From<aya::sys::SyscallError> for aya::pin::PinError
  2493. pub fn aya::pin::PinError::from(source: aya::sys::SyscallError) -> Self
  2494. impl core::error::Error for aya::pin::PinError
  2495. pub fn aya::pin::PinError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  2496. impl core::fmt::Debug for aya::pin::PinError
  2497. pub fn aya::pin::PinError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2498. impl core::fmt::Display for aya::pin::PinError
  2499. pub fn aya::pin::PinError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2500. impl core::marker::Freeze for aya::pin::PinError
  2501. impl core::marker::Send for aya::pin::PinError
  2502. impl core::marker::Sync for aya::pin::PinError
  2503. impl core::marker::Unpin for aya::pin::PinError
  2504. impl !core::panic::unwind_safe::RefUnwindSafe for aya::pin::PinError
  2505. impl !core::panic::unwind_safe::UnwindSafe for aya::pin::PinError
  2506. impl<T, U> core::convert::Into<U> for aya::pin::PinError where U: core::convert::From<T>
  2507. pub fn aya::pin::PinError::into(self) -> U
  2508. impl<T, U> core::convert::TryFrom<U> for aya::pin::PinError where U: core::convert::Into<T>
  2509. pub type aya::pin::PinError::Error = core::convert::Infallible
  2510. pub fn aya::pin::PinError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2511. impl<T, U> core::convert::TryInto<U> for aya::pin::PinError where U: core::convert::TryFrom<T>
  2512. pub type aya::pin::PinError::Error = <U as core::convert::TryFrom<T>>::Error
  2513. pub fn aya::pin::PinError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2514. impl<T> alloc::string::ToString for aya::pin::PinError where T: core::fmt::Display + ?core::marker::Sized
  2515. pub fn aya::pin::PinError::to_string(&self) -> alloc::string::String
  2516. impl<T> core::any::Any for aya::pin::PinError where T: 'static + ?core::marker::Sized
  2517. pub fn aya::pin::PinError::type_id(&self) -> core::any::TypeId
  2518. impl<T> core::borrow::Borrow<T> for aya::pin::PinError where T: ?core::marker::Sized
  2519. pub fn aya::pin::PinError::borrow(&self) -> &T
  2520. impl<T> core::borrow::BorrowMut<T> for aya::pin::PinError where T: ?core::marker::Sized
  2521. pub fn aya::pin::PinError::borrow_mut(&mut self) -> &mut T
  2522. impl<T> core::convert::From<T> for aya::pin::PinError
  2523. pub fn aya::pin::PinError::from(t: T) -> T
  2524. pub mod aya::programs
  2525. pub use aya::programs::CgroupSockAddrAttachType
  2526. pub use aya::programs::CgroupSockAttachType
  2527. pub use aya::programs::CgroupSockoptAttachType
  2528. pub mod aya::programs::cgroup_device
  2529. pub struct aya::programs::cgroup_device::CgroupDevice
  2530. impl aya::programs::cgroup_device::CgroupDevice
  2531. pub const aya::programs::cgroup_device::CgroupDevice::PROGRAM_TYPE: aya::programs::ProgramType
  2532. pub fn aya::programs::cgroup_device::CgroupDevice::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLinkId, aya::programs::ProgramError>
  2533. pub fn aya::programs::cgroup_device::CgroupDevice::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2534. pub fn aya::programs::cgroup_device::CgroupDevice::query<T: std::os::fd::owned::AsFd>(target_fd: T) -> core::result::Result<alloc::vec::Vec<aya::programs::cgroup_device::CgroupDeviceLink>, aya::programs::ProgramError>
  2535. impl aya::programs::cgroup_device::CgroupDevice
  2536. pub fn aya::programs::cgroup_device::CgroupDevice::detach(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2537. pub fn aya::programs::cgroup_device::CgroupDevice::take_link(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLink, aya::programs::ProgramError>
  2538. impl aya::programs::cgroup_device::CgroupDevice
  2539. pub fn aya::programs::cgroup_device::CgroupDevice::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2540. impl aya::programs::cgroup_device::CgroupDevice
  2541. pub fn aya::programs::cgroup_device::CgroupDevice::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  2542. impl aya::programs::cgroup_device::CgroupDevice
  2543. pub fn aya::programs::cgroup_device::CgroupDevice::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  2544. impl aya::programs::cgroup_device::CgroupDevice
  2545. pub fn aya::programs::cgroup_device::CgroupDevice::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2546. impl aya::programs::cgroup_device::CgroupDevice
  2547. pub fn aya::programs::cgroup_device::CgroupDevice::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2548. pub fn aya::programs::cgroup_device::CgroupDevice::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2549. impl aya::programs::cgroup_device::CgroupDevice
  2550. pub fn aya::programs::cgroup_device::CgroupDevice::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2551. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDevice
  2552. pub fn aya::programs::cgroup_device::CgroupDevice::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2553. impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDevice
  2554. pub fn aya::programs::cgroup_device::CgroupDevice::drop(&mut self)
  2555. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice
  2556. pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  2557. pub fn &'a aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  2558. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice
  2559. pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  2560. pub fn &'a mut aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  2561. impl core::marker::Freeze for aya::programs::cgroup_device::CgroupDevice
  2562. impl core::marker::Send for aya::programs::cgroup_device::CgroupDevice
  2563. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDevice
  2564. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDevice
  2565. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDevice
  2566. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDevice
  2567. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::From<T>
  2568. pub fn aya::programs::cgroup_device::CgroupDevice::into(self) -> U
  2569. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::Into<T>
  2570. pub type aya::programs::cgroup_device::CgroupDevice::Error = core::convert::Infallible
  2571. pub fn aya::programs::cgroup_device::CgroupDevice::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2572. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::TryFrom<T>
  2573. pub type aya::programs::cgroup_device::CgroupDevice::Error = <U as core::convert::TryFrom<T>>::Error
  2574. pub fn aya::programs::cgroup_device::CgroupDevice::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2575. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDevice where T: 'static + ?core::marker::Sized
  2576. pub fn aya::programs::cgroup_device::CgroupDevice::type_id(&self) -> core::any::TypeId
  2577. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDevice where T: ?core::marker::Sized
  2578. pub fn aya::programs::cgroup_device::CgroupDevice::borrow(&self) -> &T
  2579. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDevice where T: ?core::marker::Sized
  2580. pub fn aya::programs::cgroup_device::CgroupDevice::borrow_mut(&mut self) -> &mut T
  2581. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDevice
  2582. pub fn aya::programs::cgroup_device::CgroupDevice::from(t: T) -> T
  2583. pub struct aya::programs::cgroup_device::CgroupDeviceLink(_)
  2584. impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink
  2585. pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId
  2586. pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2587. pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id
  2588. impl core::cmp::Eq for aya::programs::cgroup_device::CgroupDeviceLink
  2589. impl core::cmp::PartialEq for aya::programs::cgroup_device::CgroupDeviceLink
  2590. pub fn aya::programs::cgroup_device::CgroupDeviceLink::eq(&self, other: &Self) -> bool
  2591. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDeviceLink
  2592. pub fn aya::programs::cgroup_device::CgroupDeviceLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2593. impl core::hash::Hash for aya::programs::cgroup_device::CgroupDeviceLink
  2594. pub fn aya::programs::cgroup_device::CgroupDeviceLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  2595. impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDeviceLink
  2596. pub fn aya::programs::cgroup_device::CgroupDeviceLink::drop(&mut self)
  2597. impl equivalent::Equivalent<aya::programs::cgroup_device::CgroupDeviceLink> for aya::programs::cgroup_device::CgroupDeviceLinkId
  2598. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::equivalent(&self, key: &aya::programs::cgroup_device::CgroupDeviceLink) -> bool
  2599. impl core::marker::Freeze for aya::programs::cgroup_device::CgroupDeviceLink
  2600. impl core::marker::Send for aya::programs::cgroup_device::CgroupDeviceLink
  2601. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDeviceLink
  2602. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDeviceLink
  2603. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDeviceLink
  2604. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDeviceLink
  2605. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_device::CgroupDeviceLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2606. pub fn aya::programs::cgroup_device::CgroupDeviceLink::equivalent(&self, key: &K) -> bool
  2607. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::From<T>
  2608. pub fn aya::programs::cgroup_device::CgroupDeviceLink::into(self) -> U
  2609. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::Into<T>
  2610. pub type aya::programs::cgroup_device::CgroupDeviceLink::Error = core::convert::Infallible
  2611. pub fn aya::programs::cgroup_device::CgroupDeviceLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2612. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::TryFrom<T>
  2613. pub type aya::programs::cgroup_device::CgroupDeviceLink::Error = <U as core::convert::TryFrom<T>>::Error
  2614. pub fn aya::programs::cgroup_device::CgroupDeviceLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2615. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDeviceLink where T: 'static + ?core::marker::Sized
  2616. pub fn aya::programs::cgroup_device::CgroupDeviceLink::type_id(&self) -> core::any::TypeId
  2617. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDeviceLink where T: ?core::marker::Sized
  2618. pub fn aya::programs::cgroup_device::CgroupDeviceLink::borrow(&self) -> &T
  2619. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDeviceLink where T: ?core::marker::Sized
  2620. pub fn aya::programs::cgroup_device::CgroupDeviceLink::borrow_mut(&mut self) -> &mut T
  2621. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDeviceLink
  2622. pub fn aya::programs::cgroup_device::CgroupDeviceLink::from(t: T) -> T
  2623. pub struct aya::programs::cgroup_device::CgroupDeviceLinkId(_)
  2624. impl core::cmp::Eq for aya::programs::cgroup_device::CgroupDeviceLinkId
  2625. impl core::cmp::PartialEq for aya::programs::cgroup_device::CgroupDeviceLinkId
  2626. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::eq(&self, other: &aya::programs::cgroup_device::CgroupDeviceLinkId) -> bool
  2627. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDeviceLinkId
  2628. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2629. impl core::hash::Hash for aya::programs::cgroup_device::CgroupDeviceLinkId
  2630. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2631. impl core::marker::StructuralPartialEq for aya::programs::cgroup_device::CgroupDeviceLinkId
  2632. impl equivalent::Equivalent<aya::programs::cgroup_device::CgroupDeviceLink> for aya::programs::cgroup_device::CgroupDeviceLinkId
  2633. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::equivalent(&self, key: &aya::programs::cgroup_device::CgroupDeviceLink) -> bool
  2634. impl core::marker::Freeze for aya::programs::cgroup_device::CgroupDeviceLinkId
  2635. impl core::marker::Send for aya::programs::cgroup_device::CgroupDeviceLinkId
  2636. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDeviceLinkId
  2637. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDeviceLinkId
  2638. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDeviceLinkId
  2639. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDeviceLinkId
  2640. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_device::CgroupDeviceLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2641. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::equivalent(&self, key: &K) -> bool
  2642. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::From<T>
  2643. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::into(self) -> U
  2644. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::Into<T>
  2645. pub type aya::programs::cgroup_device::CgroupDeviceLinkId::Error = core::convert::Infallible
  2646. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2647. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::TryFrom<T>
  2648. pub type aya::programs::cgroup_device::CgroupDeviceLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2649. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2650. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDeviceLinkId where T: 'static + ?core::marker::Sized
  2651. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::type_id(&self) -> core::any::TypeId
  2652. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDeviceLinkId where T: ?core::marker::Sized
  2653. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::borrow(&self) -> &T
  2654. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDeviceLinkId where T: ?core::marker::Sized
  2655. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::borrow_mut(&mut self) -> &mut T
  2656. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDeviceLinkId
  2657. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::from(t: T) -> T
  2658. pub mod aya::programs::cgroup_skb
  2659. pub enum aya::programs::cgroup_skb::CgroupSkbAttachType
  2660. pub aya::programs::cgroup_skb::CgroupSkbAttachType::Egress
  2661. pub aya::programs::cgroup_skb::CgroupSkbAttachType::Ingress
  2662. impl core::clone::Clone for aya::programs::cgroup_skb::CgroupSkbAttachType
  2663. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone(&self) -> aya::programs::cgroup_skb::CgroupSkbAttachType
  2664. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbAttachType
  2665. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2666. impl core::marker::Copy for aya::programs::cgroup_skb::CgroupSkbAttachType
  2667. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkbAttachType
  2668. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbAttachType
  2669. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbAttachType
  2670. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbAttachType
  2671. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  2672. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  2673. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::From<T>
  2674. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::into(self) -> U
  2675. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::Into<T>
  2676. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = core::convert::Infallible
  2677. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2678. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::TryFrom<T>
  2679. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  2680. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2681. impl<T> alloc::borrow::ToOwned for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  2682. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Owned = T
  2683. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_into(&self, target: &mut T)
  2684. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::to_owned(&self) -> T
  2685. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbAttachType where T: 'static + ?core::marker::Sized
  2686. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::type_id(&self) -> core::any::TypeId
  2687. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: ?core::marker::Sized
  2688. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow(&self) -> &T
  2689. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: ?core::marker::Sized
  2690. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow_mut(&mut self) -> &mut T
  2691. impl<T> core::clone::CloneToUninit for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  2692. pub unsafe fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_to_uninit(&self, dest: *mut u8)
  2693. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbAttachType
  2694. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::from(t: T) -> T
  2695. pub struct aya::programs::cgroup_skb::CgroupSkb
  2696. impl aya::programs::cgroup_skb::CgroupSkb
  2697. pub const aya::programs::cgroup_skb::CgroupSkb::PROGRAM_TYPE: aya::programs::ProgramType
  2698. pub fn aya::programs::cgroup_skb::CgroupSkb::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLinkId, aya::programs::ProgramError>
  2699. pub fn aya::programs::cgroup_skb::CgroupSkb::expected_attach_type(&self) -> &core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>
  2700. pub fn aya::programs::cgroup_skb::CgroupSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, expected_attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  2701. pub fn aya::programs::cgroup_skb::CgroupSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2702. impl aya::programs::cgroup_skb::CgroupSkb
  2703. pub fn aya::programs::cgroup_skb::CgroupSkb::detach(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2704. pub fn aya::programs::cgroup_skb::CgroupSkb::take_link(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLink, aya::programs::ProgramError>
  2705. impl aya::programs::cgroup_skb::CgroupSkb
  2706. pub fn aya::programs::cgroup_skb::CgroupSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2707. impl aya::programs::cgroup_skb::CgroupSkb
  2708. pub fn aya::programs::cgroup_skb::CgroupSkb::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>) -> core::result::Result<Self, aya::programs::ProgramError>
  2709. impl aya::programs::cgroup_skb::CgroupSkb
  2710. pub fn aya::programs::cgroup_skb::CgroupSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2711. impl aya::programs::cgroup_skb::CgroupSkb
  2712. pub fn aya::programs::cgroup_skb::CgroupSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2713. pub fn aya::programs::cgroup_skb::CgroupSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2714. impl aya::programs::cgroup_skb::CgroupSkb
  2715. pub fn aya::programs::cgroup_skb::CgroupSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2716. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkb
  2717. pub fn aya::programs::cgroup_skb::CgroupSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2718. impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkb
  2719. pub fn aya::programs::cgroup_skb::CgroupSkb::drop(&mut self)
  2720. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb
  2721. pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  2722. pub fn &'a aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  2723. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb
  2724. pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  2725. pub fn &'a mut aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  2726. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkb
  2727. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkb
  2728. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkb
  2729. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkb
  2730. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  2731. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  2732. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::From<T>
  2733. pub fn aya::programs::cgroup_skb::CgroupSkb::into(self) -> U
  2734. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::Into<T>
  2735. pub type aya::programs::cgroup_skb::CgroupSkb::Error = core::convert::Infallible
  2736. pub fn aya::programs::cgroup_skb::CgroupSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2737. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::TryFrom<T>
  2738. pub type aya::programs::cgroup_skb::CgroupSkb::Error = <U as core::convert::TryFrom<T>>::Error
  2739. pub fn aya::programs::cgroup_skb::CgroupSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2740. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkb where T: 'static + ?core::marker::Sized
  2741. pub fn aya::programs::cgroup_skb::CgroupSkb::type_id(&self) -> core::any::TypeId
  2742. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkb where T: ?core::marker::Sized
  2743. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow(&self) -> &T
  2744. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkb where T: ?core::marker::Sized
  2745. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow_mut(&mut self) -> &mut T
  2746. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkb
  2747. pub fn aya::programs::cgroup_skb::CgroupSkb::from(t: T) -> T
  2748. pub struct aya::programs::cgroup_skb::CgroupSkbLink(_)
  2749. impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink
  2750. pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId
  2751. pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2752. pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id
  2753. impl core::cmp::Eq for aya::programs::cgroup_skb::CgroupSkbLink
  2754. impl core::cmp::PartialEq for aya::programs::cgroup_skb::CgroupSkbLink
  2755. pub fn aya::programs::cgroup_skb::CgroupSkbLink::eq(&self, other: &Self) -> bool
  2756. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbLink
  2757. pub fn aya::programs::cgroup_skb::CgroupSkbLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2758. impl core::hash::Hash for aya::programs::cgroup_skb::CgroupSkbLink
  2759. pub fn aya::programs::cgroup_skb::CgroupSkbLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  2760. impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkbLink
  2761. pub fn aya::programs::cgroup_skb::CgroupSkbLink::drop(&mut self)
  2762. impl equivalent::Equivalent<aya::programs::cgroup_skb::CgroupSkbLink> for aya::programs::cgroup_skb::CgroupSkbLinkId
  2763. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::equivalent(&self, key: &aya::programs::cgroup_skb::CgroupSkbLink) -> bool
  2764. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkbLink
  2765. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbLink
  2766. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbLink
  2767. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbLink
  2768. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbLink
  2769. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbLink
  2770. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_skb::CgroupSkbLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2771. pub fn aya::programs::cgroup_skb::CgroupSkbLink::equivalent(&self, key: &K) -> bool
  2772. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::From<T>
  2773. pub fn aya::programs::cgroup_skb::CgroupSkbLink::into(self) -> U
  2774. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::Into<T>
  2775. pub type aya::programs::cgroup_skb::CgroupSkbLink::Error = core::convert::Infallible
  2776. pub fn aya::programs::cgroup_skb::CgroupSkbLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2777. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::TryFrom<T>
  2778. pub type aya::programs::cgroup_skb::CgroupSkbLink::Error = <U as core::convert::TryFrom<T>>::Error
  2779. pub fn aya::programs::cgroup_skb::CgroupSkbLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2780. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbLink where T: 'static + ?core::marker::Sized
  2781. pub fn aya::programs::cgroup_skb::CgroupSkbLink::type_id(&self) -> core::any::TypeId
  2782. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbLink where T: ?core::marker::Sized
  2783. pub fn aya::programs::cgroup_skb::CgroupSkbLink::borrow(&self) -> &T
  2784. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbLink where T: ?core::marker::Sized
  2785. pub fn aya::programs::cgroup_skb::CgroupSkbLink::borrow_mut(&mut self) -> &mut T
  2786. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbLink
  2787. pub fn aya::programs::cgroup_skb::CgroupSkbLink::from(t: T) -> T
  2788. pub struct aya::programs::cgroup_skb::CgroupSkbLinkId(_)
  2789. impl core::cmp::Eq for aya::programs::cgroup_skb::CgroupSkbLinkId
  2790. impl core::cmp::PartialEq for aya::programs::cgroup_skb::CgroupSkbLinkId
  2791. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::eq(&self, other: &aya::programs::cgroup_skb::CgroupSkbLinkId) -> bool
  2792. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbLinkId
  2793. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2794. impl core::hash::Hash for aya::programs::cgroup_skb::CgroupSkbLinkId
  2795. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2796. impl core::marker::StructuralPartialEq for aya::programs::cgroup_skb::CgroupSkbLinkId
  2797. impl equivalent::Equivalent<aya::programs::cgroup_skb::CgroupSkbLink> for aya::programs::cgroup_skb::CgroupSkbLinkId
  2798. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::equivalent(&self, key: &aya::programs::cgroup_skb::CgroupSkbLink) -> bool
  2799. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkbLinkId
  2800. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbLinkId
  2801. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbLinkId
  2802. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbLinkId
  2803. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbLinkId
  2804. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbLinkId
  2805. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_skb::CgroupSkbLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2806. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::equivalent(&self, key: &K) -> bool
  2807. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::From<T>
  2808. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::into(self) -> U
  2809. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::Into<T>
  2810. pub type aya::programs::cgroup_skb::CgroupSkbLinkId::Error = core::convert::Infallible
  2811. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2812. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::TryFrom<T>
  2813. pub type aya::programs::cgroup_skb::CgroupSkbLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2814. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2815. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbLinkId where T: 'static + ?core::marker::Sized
  2816. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::type_id(&self) -> core::any::TypeId
  2817. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbLinkId where T: ?core::marker::Sized
  2818. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::borrow(&self) -> &T
  2819. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbLinkId where T: ?core::marker::Sized
  2820. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::borrow_mut(&mut self) -> &mut T
  2821. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbLinkId
  2822. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::from(t: T) -> T
  2823. pub mod aya::programs::cgroup_sock
  2824. pub use aya::programs::cgroup_sock::CgroupSockAttachType
  2825. pub struct aya::programs::cgroup_sock::CgroupSock
  2826. impl aya::programs::cgroup_sock::CgroupSock
  2827. pub const aya::programs::cgroup_sock::CgroupSock::PROGRAM_TYPE: aya::programs::ProgramType
  2828. pub fn aya::programs::cgroup_sock::CgroupSock::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLinkId, aya::programs::ProgramError>
  2829. pub fn aya::programs::cgroup_sock::CgroupSock::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock::CgroupSockAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  2830. pub fn aya::programs::cgroup_sock::CgroupSock::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2831. impl aya::programs::cgroup_sock::CgroupSock
  2832. pub fn aya::programs::cgroup_sock::CgroupSock::detach(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2833. pub fn aya::programs::cgroup_sock::CgroupSock::take_link(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLink, aya::programs::ProgramError>
  2834. impl aya::programs::cgroup_sock::CgroupSock
  2835. pub fn aya::programs::cgroup_sock::CgroupSock::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2836. impl aya::programs::cgroup_sock::CgroupSock
  2837. pub fn aya::programs::cgroup_sock::CgroupSock::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2838. impl aya::programs::cgroup_sock::CgroupSock
  2839. pub fn aya::programs::cgroup_sock::CgroupSock::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2840. pub fn aya::programs::cgroup_sock::CgroupSock::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2841. impl aya::programs::cgroup_sock::CgroupSock
  2842. pub fn aya::programs::cgroup_sock::CgroupSock::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2843. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSock
  2844. pub fn aya::programs::cgroup_sock::CgroupSock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2845. impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSock
  2846. pub fn aya::programs::cgroup_sock::CgroupSock::drop(&mut self)
  2847. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock
  2848. pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  2849. pub fn &'a aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  2850. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock
  2851. pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  2852. pub fn &'a mut aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  2853. impl core::marker::Freeze for aya::programs::cgroup_sock::CgroupSock
  2854. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSock
  2855. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSock
  2856. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSock
  2857. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSock
  2858. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSock
  2859. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::From<T>
  2860. pub fn aya::programs::cgroup_sock::CgroupSock::into(self) -> U
  2861. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::Into<T>
  2862. pub type aya::programs::cgroup_sock::CgroupSock::Error = core::convert::Infallible
  2863. pub fn aya::programs::cgroup_sock::CgroupSock::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2864. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::TryFrom<T>
  2865. pub type aya::programs::cgroup_sock::CgroupSock::Error = <U as core::convert::TryFrom<T>>::Error
  2866. pub fn aya::programs::cgroup_sock::CgroupSock::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2867. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSock where T: 'static + ?core::marker::Sized
  2868. pub fn aya::programs::cgroup_sock::CgroupSock::type_id(&self) -> core::any::TypeId
  2869. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSock where T: ?core::marker::Sized
  2870. pub fn aya::programs::cgroup_sock::CgroupSock::borrow(&self) -> &T
  2871. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSock where T: ?core::marker::Sized
  2872. pub fn aya::programs::cgroup_sock::CgroupSock::borrow_mut(&mut self) -> &mut T
  2873. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSock
  2874. pub fn aya::programs::cgroup_sock::CgroupSock::from(t: T) -> T
  2875. pub struct aya::programs::cgroup_sock::CgroupSockLink(_)
  2876. impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink
  2877. pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId
  2878. pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2879. pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id
  2880. impl core::cmp::Eq for aya::programs::cgroup_sock::CgroupSockLink
  2881. impl core::cmp::PartialEq for aya::programs::cgroup_sock::CgroupSockLink
  2882. pub fn aya::programs::cgroup_sock::CgroupSockLink::eq(&self, other: &Self) -> bool
  2883. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSockLink
  2884. pub fn aya::programs::cgroup_sock::CgroupSockLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2885. impl core::hash::Hash for aya::programs::cgroup_sock::CgroupSockLink
  2886. pub fn aya::programs::cgroup_sock::CgroupSockLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  2887. impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSockLink
  2888. pub fn aya::programs::cgroup_sock::CgroupSockLink::drop(&mut self)
  2889. impl equivalent::Equivalent<aya::programs::cgroup_sock::CgroupSockLink> for aya::programs::cgroup_sock::CgroupSockLinkId
  2890. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::equivalent(&self, key: &aya::programs::cgroup_sock::CgroupSockLink) -> bool
  2891. impl core::marker::Freeze for aya::programs::cgroup_sock::CgroupSockLink
  2892. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSockLink
  2893. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSockLink
  2894. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSockLink
  2895. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSockLink
  2896. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSockLink
  2897. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sock::CgroupSockLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2898. pub fn aya::programs::cgroup_sock::CgroupSockLink::equivalent(&self, key: &K) -> bool
  2899. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::From<T>
  2900. pub fn aya::programs::cgroup_sock::CgroupSockLink::into(self) -> U
  2901. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::Into<T>
  2902. pub type aya::programs::cgroup_sock::CgroupSockLink::Error = core::convert::Infallible
  2903. pub fn aya::programs::cgroup_sock::CgroupSockLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2904. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::TryFrom<T>
  2905. pub type aya::programs::cgroup_sock::CgroupSockLink::Error = <U as core::convert::TryFrom<T>>::Error
  2906. pub fn aya::programs::cgroup_sock::CgroupSockLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2907. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSockLink where T: 'static + ?core::marker::Sized
  2908. pub fn aya::programs::cgroup_sock::CgroupSockLink::type_id(&self) -> core::any::TypeId
  2909. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSockLink where T: ?core::marker::Sized
  2910. pub fn aya::programs::cgroup_sock::CgroupSockLink::borrow(&self) -> &T
  2911. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSockLink where T: ?core::marker::Sized
  2912. pub fn aya::programs::cgroup_sock::CgroupSockLink::borrow_mut(&mut self) -> &mut T
  2913. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSockLink
  2914. pub fn aya::programs::cgroup_sock::CgroupSockLink::from(t: T) -> T
  2915. pub struct aya::programs::cgroup_sock::CgroupSockLinkId(_)
  2916. impl core::cmp::Eq for aya::programs::cgroup_sock::CgroupSockLinkId
  2917. impl core::cmp::PartialEq for aya::programs::cgroup_sock::CgroupSockLinkId
  2918. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::eq(&self, other: &aya::programs::cgroup_sock::CgroupSockLinkId) -> bool
  2919. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSockLinkId
  2920. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2921. impl core::hash::Hash for aya::programs::cgroup_sock::CgroupSockLinkId
  2922. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2923. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sock::CgroupSockLinkId
  2924. impl equivalent::Equivalent<aya::programs::cgroup_sock::CgroupSockLink> for aya::programs::cgroup_sock::CgroupSockLinkId
  2925. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::equivalent(&self, key: &aya::programs::cgroup_sock::CgroupSockLink) -> bool
  2926. impl core::marker::Freeze for aya::programs::cgroup_sock::CgroupSockLinkId
  2927. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSockLinkId
  2928. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSockLinkId
  2929. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSockLinkId
  2930. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSockLinkId
  2931. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSockLinkId
  2932. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sock::CgroupSockLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2933. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::equivalent(&self, key: &K) -> bool
  2934. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::From<T>
  2935. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::into(self) -> U
  2936. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::Into<T>
  2937. pub type aya::programs::cgroup_sock::CgroupSockLinkId::Error = core::convert::Infallible
  2938. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2939. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::TryFrom<T>
  2940. pub type aya::programs::cgroup_sock::CgroupSockLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2941. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2942. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSockLinkId where T: 'static + ?core::marker::Sized
  2943. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::type_id(&self) -> core::any::TypeId
  2944. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSockLinkId where T: ?core::marker::Sized
  2945. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::borrow(&self) -> &T
  2946. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSockLinkId where T: ?core::marker::Sized
  2947. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::borrow_mut(&mut self) -> &mut T
  2948. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSockLinkId
  2949. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::from(t: T) -> T
  2950. pub mod aya::programs::cgroup_sock_addr
  2951. pub use aya::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  2952. pub struct aya::programs::cgroup_sock_addr::CgroupSockAddr
  2953. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2954. pub const aya::programs::cgroup_sock_addr::CgroupSockAddr::PROGRAM_TYPE: aya::programs::ProgramType
  2955. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId, aya::programs::ProgramError>
  2956. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  2957. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2958. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2959. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::detach(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2960. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::take_link(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLink, aya::programs::ProgramError>
  2961. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2962. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2963. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2964. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2965. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2966. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2967. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2968. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2969. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2970. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2971. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2972. impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2973. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::drop(&mut self)
  2974. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr
  2975. pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  2976. pub fn &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  2977. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr
  2978. pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  2979. pub fn &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  2980. impl core::marker::Freeze for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2981. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2982. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2983. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2984. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2985. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2986. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::From<T>
  2987. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::into(self) -> U
  2988. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::Into<T>
  2989. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = core::convert::Infallible
  2990. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2991. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::TryFrom<T>
  2992. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = <U as core::convert::TryFrom<T>>::Error
  2993. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2994. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: 'static + ?core::marker::Sized
  2995. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::type_id(&self) -> core::any::TypeId
  2996. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: ?core::marker::Sized
  2997. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow(&self) -> &T
  2998. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: ?core::marker::Sized
  2999. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow_mut(&mut self) -> &mut T
  3000. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr
  3001. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from(t: T) -> T
  3002. pub struct aya::programs::cgroup_sock_addr::CgroupSockAddrLink(_)
  3003. impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3004. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3005. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3006. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id
  3007. impl core::cmp::Eq for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3008. impl core::cmp::PartialEq for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3009. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::eq(&self, other: &Self) -> bool
  3010. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3011. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3012. impl core::hash::Hash for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3013. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3014. impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3015. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::drop(&mut self)
  3016. impl equivalent::Equivalent<aya::programs::cgroup_sock_addr::CgroupSockAddrLink> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3017. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::equivalent(&self, key: &aya::programs::cgroup_sock_addr::CgroupSockAddrLink) -> bool
  3018. impl core::marker::Freeze for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3019. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3020. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3021. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3022. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3023. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3024. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3025. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::equivalent(&self, key: &K) -> bool
  3026. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::From<T>
  3027. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::into(self) -> U
  3028. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::Into<T>
  3029. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Error = core::convert::Infallible
  3030. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3031. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::TryFrom<T>
  3032. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Error = <U as core::convert::TryFrom<T>>::Error
  3033. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3034. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: 'static + ?core::marker::Sized
  3035. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::type_id(&self) -> core::any::TypeId
  3036. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: ?core::marker::Sized
  3037. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::borrow(&self) -> &T
  3038. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: ?core::marker::Sized
  3039. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::borrow_mut(&mut self) -> &mut T
  3040. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3041. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::from(t: T) -> T
  3042. pub struct aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId(_)
  3043. impl core::cmp::Eq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3044. impl core::cmp::PartialEq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3045. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::eq(&self, other: &aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> bool
  3046. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3047. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3048. impl core::hash::Hash for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3049. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3050. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3051. impl equivalent::Equivalent<aya::programs::cgroup_sock_addr::CgroupSockAddrLink> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3052. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::equivalent(&self, key: &aya::programs::cgroup_sock_addr::CgroupSockAddrLink) -> bool
  3053. impl core::marker::Freeze for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3054. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3055. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3056. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3057. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3058. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3059. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3060. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::equivalent(&self, key: &K) -> bool
  3061. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::From<T>
  3062. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::into(self) -> U
  3063. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::Into<T>
  3064. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::Error = core::convert::Infallible
  3065. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3066. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::TryFrom<T>
  3067. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3068. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3069. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: 'static + ?core::marker::Sized
  3070. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::type_id(&self) -> core::any::TypeId
  3071. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: ?core::marker::Sized
  3072. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::borrow(&self) -> &T
  3073. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: ?core::marker::Sized
  3074. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::borrow_mut(&mut self) -> &mut T
  3075. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3076. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::from(t: T) -> T
  3077. pub mod aya::programs::cgroup_sockopt
  3078. pub use aya::programs::cgroup_sockopt::CgroupSockoptAttachType
  3079. pub struct aya::programs::cgroup_sockopt::CgroupSockopt
  3080. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3081. pub const aya::programs::cgroup_sockopt::CgroupSockopt::PROGRAM_TYPE: aya::programs::ProgramType
  3082. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLinkId, aya::programs::ProgramError>
  3083. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  3084. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3085. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3086. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::detach(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3087. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::take_link(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLink, aya::programs::ProgramError>
  3088. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3089. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3090. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3091. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  3092. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3093. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3094. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3095. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3096. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3097. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3098. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3099. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockopt
  3100. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3101. impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockopt
  3102. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::drop(&mut self)
  3103. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt
  3104. pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  3105. pub fn &'a aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  3106. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt
  3107. pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  3108. pub fn &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  3109. impl core::marker::Freeze for aya::programs::cgroup_sockopt::CgroupSockopt
  3110. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockopt
  3111. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockopt
  3112. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockopt
  3113. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  3114. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  3115. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::From<T>
  3116. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::into(self) -> U
  3117. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::Into<T>
  3118. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = core::convert::Infallible
  3119. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3120. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::TryFrom<T>
  3121. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = <U as core::convert::TryFrom<T>>::Error
  3122. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3123. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockopt where T: 'static + ?core::marker::Sized
  3124. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::type_id(&self) -> core::any::TypeId
  3125. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: ?core::marker::Sized
  3126. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow(&self) -> &T
  3127. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: ?core::marker::Sized
  3128. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow_mut(&mut self) -> &mut T
  3129. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockopt
  3130. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from(t: T) -> T
  3131. pub struct aya::programs::cgroup_sockopt::CgroupSockoptLink(_)
  3132. impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3133. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3134. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3135. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id
  3136. impl core::cmp::Eq for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3137. impl core::cmp::PartialEq for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3138. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::eq(&self, other: &Self) -> bool
  3139. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3140. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3141. impl core::hash::Hash for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3142. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3143. impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3144. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::drop(&mut self)
  3145. impl equivalent::Equivalent<aya::programs::cgroup_sockopt::CgroupSockoptLink> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3146. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::equivalent(&self, key: &aya::programs::cgroup_sockopt::CgroupSockoptLink) -> bool
  3147. impl core::marker::Freeze for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3148. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3149. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3150. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3151. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3152. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3153. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sockopt::CgroupSockoptLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3154. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::equivalent(&self, key: &K) -> bool
  3155. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::From<T>
  3156. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::into(self) -> U
  3157. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::Into<T>
  3158. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Error = core::convert::Infallible
  3159. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3160. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::TryFrom<T>
  3161. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Error = <U as core::convert::TryFrom<T>>::Error
  3162. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3163. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: 'static + ?core::marker::Sized
  3164. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::type_id(&self) -> core::any::TypeId
  3165. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: ?core::marker::Sized
  3166. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::borrow(&self) -> &T
  3167. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: ?core::marker::Sized
  3168. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::borrow_mut(&mut self) -> &mut T
  3169. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3170. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::from(t: T) -> T
  3171. pub struct aya::programs::cgroup_sockopt::CgroupSockoptLinkId(_)
  3172. impl core::cmp::Eq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3173. impl core::cmp::PartialEq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3174. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::eq(&self, other: &aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> bool
  3175. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3176. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3177. impl core::hash::Hash for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3178. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3179. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3180. impl equivalent::Equivalent<aya::programs::cgroup_sockopt::CgroupSockoptLink> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3181. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::equivalent(&self, key: &aya::programs::cgroup_sockopt::CgroupSockoptLink) -> bool
  3182. impl core::marker::Freeze for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3183. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3184. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3185. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3186. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3187. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3188. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3189. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::equivalent(&self, key: &K) -> bool
  3190. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::From<T>
  3191. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::into(self) -> U
  3192. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::Into<T>
  3193. pub type aya::programs::cgroup_sockopt::CgroupSockoptLinkId::Error = core::convert::Infallible
  3194. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3195. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::TryFrom<T>
  3196. pub type aya::programs::cgroup_sockopt::CgroupSockoptLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3197. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3198. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: 'static + ?core::marker::Sized
  3199. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::type_id(&self) -> core::any::TypeId
  3200. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: ?core::marker::Sized
  3201. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::borrow(&self) -> &T
  3202. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: ?core::marker::Sized
  3203. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::borrow_mut(&mut self) -> &mut T
  3204. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3205. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::from(t: T) -> T
  3206. pub mod aya::programs::cgroup_sysctl
  3207. pub struct aya::programs::cgroup_sysctl::CgroupSysctl
  3208. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3209. pub const aya::programs::cgroup_sysctl::CgroupSysctl::PROGRAM_TYPE: aya::programs::ProgramType
  3210. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLinkId, aya::programs::ProgramError>
  3211. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3212. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3213. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::detach(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3214. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::take_link(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLink, aya::programs::ProgramError>
  3215. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3216. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3217. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3218. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3219. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3220. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3221. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3222. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3223. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3224. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3225. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3226. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3227. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3228. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctl
  3229. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3230. impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctl
  3231. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::drop(&mut self)
  3232. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl
  3233. pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  3234. pub fn &'a aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  3235. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl
  3236. pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  3237. pub fn &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  3238. impl core::marker::Freeze for aya::programs::cgroup_sysctl::CgroupSysctl
  3239. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctl
  3240. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctl
  3241. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctl
  3242. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  3243. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  3244. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::From<T>
  3245. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::into(self) -> U
  3246. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::Into<T>
  3247. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = core::convert::Infallible
  3248. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3249. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::TryFrom<T>
  3250. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = <U as core::convert::TryFrom<T>>::Error
  3251. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3252. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctl where T: 'static + ?core::marker::Sized
  3253. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::type_id(&self) -> core::any::TypeId
  3254. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: ?core::marker::Sized
  3255. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow(&self) -> &T
  3256. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: ?core::marker::Sized
  3257. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow_mut(&mut self) -> &mut T
  3258. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctl
  3259. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from(t: T) -> T
  3260. pub struct aya::programs::cgroup_sysctl::CgroupSysctlLink(_)
  3261. impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3262. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3263. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3264. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id
  3265. impl core::cmp::Eq for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3266. impl core::cmp::PartialEq for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3267. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::eq(&self, other: &Self) -> bool
  3268. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3269. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3270. impl core::hash::Hash for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3271. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3272. impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3273. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::drop(&mut self)
  3274. impl equivalent::Equivalent<aya::programs::cgroup_sysctl::CgroupSysctlLink> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3275. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::equivalent(&self, key: &aya::programs::cgroup_sysctl::CgroupSysctlLink) -> bool
  3276. impl core::marker::Freeze for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3277. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3278. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3279. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3280. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3281. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3282. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sysctl::CgroupSysctlLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3283. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::equivalent(&self, key: &K) -> bool
  3284. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::From<T>
  3285. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::into(self) -> U
  3286. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::Into<T>
  3287. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Error = core::convert::Infallible
  3288. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3289. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::TryFrom<T>
  3290. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Error = <U as core::convert::TryFrom<T>>::Error
  3291. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3292. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: 'static + ?core::marker::Sized
  3293. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::type_id(&self) -> core::any::TypeId
  3294. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: ?core::marker::Sized
  3295. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::borrow(&self) -> &T
  3296. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: ?core::marker::Sized
  3297. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::borrow_mut(&mut self) -> &mut T
  3298. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3299. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::from(t: T) -> T
  3300. pub struct aya::programs::cgroup_sysctl::CgroupSysctlLinkId(_)
  3301. impl core::cmp::Eq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3302. impl core::cmp::PartialEq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3303. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::eq(&self, other: &aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> bool
  3304. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3305. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3306. impl core::hash::Hash for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3307. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3308. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3309. impl equivalent::Equivalent<aya::programs::cgroup_sysctl::CgroupSysctlLink> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3310. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::equivalent(&self, key: &aya::programs::cgroup_sysctl::CgroupSysctlLink) -> bool
  3311. impl core::marker::Freeze for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3312. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3313. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3314. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3315. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3316. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3317. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3318. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::equivalent(&self, key: &K) -> bool
  3319. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::From<T>
  3320. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::into(self) -> U
  3321. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::Into<T>
  3322. pub type aya::programs::cgroup_sysctl::CgroupSysctlLinkId::Error = core::convert::Infallible
  3323. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3324. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::TryFrom<T>
  3325. pub type aya::programs::cgroup_sysctl::CgroupSysctlLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3326. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3327. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: 'static + ?core::marker::Sized
  3328. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::type_id(&self) -> core::any::TypeId
  3329. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: ?core::marker::Sized
  3330. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::borrow(&self) -> &T
  3331. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: ?core::marker::Sized
  3332. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::borrow_mut(&mut self) -> &mut T
  3333. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3334. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::from(t: T) -> T
  3335. pub mod aya::programs::extension
  3336. pub enum aya::programs::extension::ExtensionError
  3337. pub aya::programs::extension::ExtensionError::NoBTF
  3338. impl core::convert::From<aya::programs::extension::ExtensionError> for aya::programs::ProgramError
  3339. pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self
  3340. impl core::error::Error for aya::programs::extension::ExtensionError
  3341. impl core::fmt::Debug for aya::programs::extension::ExtensionError
  3342. pub fn aya::programs::extension::ExtensionError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3343. impl core::fmt::Display for aya::programs::extension::ExtensionError
  3344. pub fn aya::programs::extension::ExtensionError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3345. impl core::marker::Freeze for aya::programs::extension::ExtensionError
  3346. impl core::marker::Send for aya::programs::extension::ExtensionError
  3347. impl core::marker::Sync for aya::programs::extension::ExtensionError
  3348. impl core::marker::Unpin for aya::programs::extension::ExtensionError
  3349. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionError
  3350. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionError
  3351. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionError where U: core::convert::From<T>
  3352. pub fn aya::programs::extension::ExtensionError::into(self) -> U
  3353. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionError where U: core::convert::Into<T>
  3354. pub type aya::programs::extension::ExtensionError::Error = core::convert::Infallible
  3355. pub fn aya::programs::extension::ExtensionError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3356. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionError where U: core::convert::TryFrom<T>
  3357. pub type aya::programs::extension::ExtensionError::Error = <U as core::convert::TryFrom<T>>::Error
  3358. pub fn aya::programs::extension::ExtensionError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3359. impl<T> alloc::string::ToString for aya::programs::extension::ExtensionError where T: core::fmt::Display + ?core::marker::Sized
  3360. pub fn aya::programs::extension::ExtensionError::to_string(&self) -> alloc::string::String
  3361. impl<T> core::any::Any for aya::programs::extension::ExtensionError where T: 'static + ?core::marker::Sized
  3362. pub fn aya::programs::extension::ExtensionError::type_id(&self) -> core::any::TypeId
  3363. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionError where T: ?core::marker::Sized
  3364. pub fn aya::programs::extension::ExtensionError::borrow(&self) -> &T
  3365. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionError where T: ?core::marker::Sized
  3366. pub fn aya::programs::extension::ExtensionError::borrow_mut(&mut self) -> &mut T
  3367. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionError
  3368. pub fn aya::programs::extension::ExtensionError::from(t: T) -> T
  3369. pub struct aya::programs::extension::Extension
  3370. impl aya::programs::extension::Extension
  3371. pub const aya::programs::extension::Extension::PROGRAM_TYPE: aya::programs::ProgramType
  3372. pub fn aya::programs::extension::Extension::attach(&mut self) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  3373. pub fn aya::programs::extension::Extension::attach_to_program(&mut self, program: &aya::programs::ProgramFd, func_name: &str) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  3374. pub fn aya::programs::extension::Extension::load(&mut self, program: aya::programs::ProgramFd, func_name: &str) -> core::result::Result<(), aya::programs::ProgramError>
  3375. impl aya::programs::extension::Extension
  3376. pub fn aya::programs::extension::Extension::detach(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3377. pub fn aya::programs::extension::Extension::take_link(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<aya::programs::extension::ExtensionLink, aya::programs::ProgramError>
  3378. impl aya::programs::extension::Extension
  3379. pub fn aya::programs::extension::Extension::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3380. impl aya::programs::extension::Extension
  3381. pub fn aya::programs::extension::Extension::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3382. impl aya::programs::extension::Extension
  3383. pub fn aya::programs::extension::Extension::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3384. impl aya::programs::extension::Extension
  3385. pub fn aya::programs::extension::Extension::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3386. impl aya::programs::extension::Extension
  3387. pub fn aya::programs::extension::Extension::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3388. pub fn aya::programs::extension::Extension::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3389. impl aya::programs::extension::Extension
  3390. pub fn aya::programs::extension::Extension::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3391. impl core::fmt::Debug for aya::programs::extension::Extension
  3392. pub fn aya::programs::extension::Extension::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3393. impl core::ops::drop::Drop for aya::programs::extension::Extension
  3394. pub fn aya::programs::extension::Extension::drop(&mut self)
  3395. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension
  3396. pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError
  3397. pub fn &'a aya::programs::extension::Extension::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::extension::Extension, aya::programs::ProgramError>
  3398. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension
  3399. pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError
  3400. pub fn &'a mut aya::programs::extension::Extension::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::extension::Extension, aya::programs::ProgramError>
  3401. impl core::marker::Freeze for aya::programs::extension::Extension
  3402. impl core::marker::Send for aya::programs::extension::Extension
  3403. impl core::marker::Sync for aya::programs::extension::Extension
  3404. impl core::marker::Unpin for aya::programs::extension::Extension
  3405. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::Extension
  3406. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::Extension
  3407. impl<T, U> core::convert::Into<U> for aya::programs::extension::Extension where U: core::convert::From<T>
  3408. pub fn aya::programs::extension::Extension::into(self) -> U
  3409. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::Extension where U: core::convert::Into<T>
  3410. pub type aya::programs::extension::Extension::Error = core::convert::Infallible
  3411. pub fn aya::programs::extension::Extension::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3412. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::Extension where U: core::convert::TryFrom<T>
  3413. pub type aya::programs::extension::Extension::Error = <U as core::convert::TryFrom<T>>::Error
  3414. pub fn aya::programs::extension::Extension::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3415. impl<T> core::any::Any for aya::programs::extension::Extension where T: 'static + ?core::marker::Sized
  3416. pub fn aya::programs::extension::Extension::type_id(&self) -> core::any::TypeId
  3417. impl<T> core::borrow::Borrow<T> for aya::programs::extension::Extension where T: ?core::marker::Sized
  3418. pub fn aya::programs::extension::Extension::borrow(&self) -> &T
  3419. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::Extension where T: ?core::marker::Sized
  3420. pub fn aya::programs::extension::Extension::borrow_mut(&mut self) -> &mut T
  3421. impl<T> core::convert::From<T> for aya::programs::extension::Extension
  3422. pub fn aya::programs::extension::Extension::from(t: T) -> T
  3423. pub struct aya::programs::extension::ExtensionLink(_)
  3424. impl aya::programs::links::Link for aya::programs::extension::ExtensionLink
  3425. pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId
  3426. pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3427. pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id
  3428. impl core::cmp::Eq for aya::programs::extension::ExtensionLink
  3429. impl core::cmp::PartialEq for aya::programs::extension::ExtensionLink
  3430. pub fn aya::programs::extension::ExtensionLink::eq(&self, other: &Self) -> bool
  3431. impl core::convert::From<aya::programs::extension::ExtensionLink> for aya::programs::links::FdLink
  3432. pub fn aya::programs::links::FdLink::from(w: aya::programs::extension::ExtensionLink) -> aya::programs::links::FdLink
  3433. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::extension::ExtensionLink
  3434. pub fn aya::programs::extension::ExtensionLink::from(b: aya::programs::links::FdLink) -> aya::programs::extension::ExtensionLink
  3435. impl core::fmt::Debug for aya::programs::extension::ExtensionLink
  3436. pub fn aya::programs::extension::ExtensionLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3437. impl core::hash::Hash for aya::programs::extension::ExtensionLink
  3438. pub fn aya::programs::extension::ExtensionLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3439. impl core::ops::drop::Drop for aya::programs::extension::ExtensionLink
  3440. pub fn aya::programs::extension::ExtensionLink::drop(&mut self)
  3441. impl equivalent::Equivalent<aya::programs::extension::ExtensionLink> for aya::programs::extension::ExtensionLinkId
  3442. pub fn aya::programs::extension::ExtensionLinkId::equivalent(&self, key: &aya::programs::extension::ExtensionLink) -> bool
  3443. impl core::marker::Freeze for aya::programs::extension::ExtensionLink
  3444. impl core::marker::Send for aya::programs::extension::ExtensionLink
  3445. impl core::marker::Sync for aya::programs::extension::ExtensionLink
  3446. impl core::marker::Unpin for aya::programs::extension::ExtensionLink
  3447. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionLink
  3448. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionLink
  3449. impl<Q, K> equivalent::Equivalent<K> for aya::programs::extension::ExtensionLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3450. pub fn aya::programs::extension::ExtensionLink::equivalent(&self, key: &K) -> bool
  3451. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionLink where U: core::convert::From<T>
  3452. pub fn aya::programs::extension::ExtensionLink::into(self) -> U
  3453. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionLink where U: core::convert::Into<T>
  3454. pub type aya::programs::extension::ExtensionLink::Error = core::convert::Infallible
  3455. pub fn aya::programs::extension::ExtensionLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3456. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionLink where U: core::convert::TryFrom<T>
  3457. pub type aya::programs::extension::ExtensionLink::Error = <U as core::convert::TryFrom<T>>::Error
  3458. pub fn aya::programs::extension::ExtensionLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3459. impl<T> core::any::Any for aya::programs::extension::ExtensionLink where T: 'static + ?core::marker::Sized
  3460. pub fn aya::programs::extension::ExtensionLink::type_id(&self) -> core::any::TypeId
  3461. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionLink where T: ?core::marker::Sized
  3462. pub fn aya::programs::extension::ExtensionLink::borrow(&self) -> &T
  3463. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionLink where T: ?core::marker::Sized
  3464. pub fn aya::programs::extension::ExtensionLink::borrow_mut(&mut self) -> &mut T
  3465. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionLink
  3466. pub fn aya::programs::extension::ExtensionLink::from(t: T) -> T
  3467. pub struct aya::programs::extension::ExtensionLinkId(_)
  3468. impl core::cmp::Eq for aya::programs::extension::ExtensionLinkId
  3469. impl core::cmp::PartialEq for aya::programs::extension::ExtensionLinkId
  3470. pub fn aya::programs::extension::ExtensionLinkId::eq(&self, other: &aya::programs::extension::ExtensionLinkId) -> bool
  3471. impl core::fmt::Debug for aya::programs::extension::ExtensionLinkId
  3472. pub fn aya::programs::extension::ExtensionLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3473. impl core::hash::Hash for aya::programs::extension::ExtensionLinkId
  3474. pub fn aya::programs::extension::ExtensionLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3475. impl core::marker::StructuralPartialEq for aya::programs::extension::ExtensionLinkId
  3476. impl equivalent::Equivalent<aya::programs::extension::ExtensionLink> for aya::programs::extension::ExtensionLinkId
  3477. pub fn aya::programs::extension::ExtensionLinkId::equivalent(&self, key: &aya::programs::extension::ExtensionLink) -> bool
  3478. impl core::marker::Freeze for aya::programs::extension::ExtensionLinkId
  3479. impl core::marker::Send for aya::programs::extension::ExtensionLinkId
  3480. impl core::marker::Sync for aya::programs::extension::ExtensionLinkId
  3481. impl core::marker::Unpin for aya::programs::extension::ExtensionLinkId
  3482. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionLinkId
  3483. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionLinkId
  3484. impl<Q, K> equivalent::Equivalent<K> for aya::programs::extension::ExtensionLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3485. pub fn aya::programs::extension::ExtensionLinkId::equivalent(&self, key: &K) -> bool
  3486. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionLinkId where U: core::convert::From<T>
  3487. pub fn aya::programs::extension::ExtensionLinkId::into(self) -> U
  3488. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionLinkId where U: core::convert::Into<T>
  3489. pub type aya::programs::extension::ExtensionLinkId::Error = core::convert::Infallible
  3490. pub fn aya::programs::extension::ExtensionLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3491. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionLinkId where U: core::convert::TryFrom<T>
  3492. pub type aya::programs::extension::ExtensionLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3493. pub fn aya::programs::extension::ExtensionLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3494. impl<T> core::any::Any for aya::programs::extension::ExtensionLinkId where T: 'static + ?core::marker::Sized
  3495. pub fn aya::programs::extension::ExtensionLinkId::type_id(&self) -> core::any::TypeId
  3496. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionLinkId where T: ?core::marker::Sized
  3497. pub fn aya::programs::extension::ExtensionLinkId::borrow(&self) -> &T
  3498. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionLinkId where T: ?core::marker::Sized
  3499. pub fn aya::programs::extension::ExtensionLinkId::borrow_mut(&mut self) -> &mut T
  3500. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionLinkId
  3501. pub fn aya::programs::extension::ExtensionLinkId::from(t: T) -> T
  3502. pub mod aya::programs::fentry
  3503. pub struct aya::programs::fentry::FEntry
  3504. impl aya::programs::fentry::FEntry
  3505. pub const aya::programs::fentry::FEntry::PROGRAM_TYPE: aya::programs::ProgramType
  3506. pub fn aya::programs::fentry::FEntry::attach(&mut self) -> core::result::Result<aya::programs::fentry::FEntryLinkId, aya::programs::ProgramError>
  3507. pub fn aya::programs::fentry::FEntry::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  3508. impl aya::programs::fentry::FEntry
  3509. pub fn aya::programs::fentry::FEntry::detach(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3510. pub fn aya::programs::fentry::FEntry::take_link(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<aya::programs::fentry::FEntryLink, aya::programs::ProgramError>
  3511. impl aya::programs::fentry::FEntry
  3512. pub fn aya::programs::fentry::FEntry::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3513. impl aya::programs::fentry::FEntry
  3514. pub fn aya::programs::fentry::FEntry::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3515. impl aya::programs::fentry::FEntry
  3516. pub unsafe fn aya::programs::fentry::FEntry::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3517. impl aya::programs::fentry::FEntry
  3518. pub fn aya::programs::fentry::FEntry::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3519. impl aya::programs::fentry::FEntry
  3520. pub fn aya::programs::fentry::FEntry::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3521. pub fn aya::programs::fentry::FEntry::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3522. impl aya::programs::fentry::FEntry
  3523. pub fn aya::programs::fentry::FEntry::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3524. impl core::fmt::Debug for aya::programs::fentry::FEntry
  3525. pub fn aya::programs::fentry::FEntry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3526. impl core::ops::drop::Drop for aya::programs::fentry::FEntry
  3527. pub fn aya::programs::fentry::FEntry::drop(&mut self)
  3528. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry
  3529. pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  3530. pub fn &'a aya::programs::fentry::FEntry::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fentry::FEntry, aya::programs::ProgramError>
  3531. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry
  3532. pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  3533. pub fn &'a mut aya::programs::fentry::FEntry::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fentry::FEntry, aya::programs::ProgramError>
  3534. impl core::marker::Freeze for aya::programs::fentry::FEntry
  3535. impl core::marker::Send for aya::programs::fentry::FEntry
  3536. impl core::marker::Sync for aya::programs::fentry::FEntry
  3537. impl core::marker::Unpin for aya::programs::fentry::FEntry
  3538. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntry
  3539. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntry
  3540. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntry where U: core::convert::From<T>
  3541. pub fn aya::programs::fentry::FEntry::into(self) -> U
  3542. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntry where U: core::convert::Into<T>
  3543. pub type aya::programs::fentry::FEntry::Error = core::convert::Infallible
  3544. pub fn aya::programs::fentry::FEntry::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3545. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntry where U: core::convert::TryFrom<T>
  3546. pub type aya::programs::fentry::FEntry::Error = <U as core::convert::TryFrom<T>>::Error
  3547. pub fn aya::programs::fentry::FEntry::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3548. impl<T> core::any::Any for aya::programs::fentry::FEntry where T: 'static + ?core::marker::Sized
  3549. pub fn aya::programs::fentry::FEntry::type_id(&self) -> core::any::TypeId
  3550. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntry where T: ?core::marker::Sized
  3551. pub fn aya::programs::fentry::FEntry::borrow(&self) -> &T
  3552. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntry where T: ?core::marker::Sized
  3553. pub fn aya::programs::fentry::FEntry::borrow_mut(&mut self) -> &mut T
  3554. impl<T> core::convert::From<T> for aya::programs::fentry::FEntry
  3555. pub fn aya::programs::fentry::FEntry::from(t: T) -> T
  3556. pub struct aya::programs::fentry::FEntryLink(_)
  3557. impl aya::programs::links::Link for aya::programs::fentry::FEntryLink
  3558. pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId
  3559. pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3560. pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id
  3561. impl core::cmp::Eq for aya::programs::fentry::FEntryLink
  3562. impl core::cmp::PartialEq for aya::programs::fentry::FEntryLink
  3563. pub fn aya::programs::fentry::FEntryLink::eq(&self, other: &Self) -> bool
  3564. impl core::convert::From<aya::programs::fentry::FEntryLink> for aya::programs::links::FdLink
  3565. pub fn aya::programs::links::FdLink::from(w: aya::programs::fentry::FEntryLink) -> aya::programs::links::FdLink
  3566. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fentry::FEntryLink
  3567. pub fn aya::programs::fentry::FEntryLink::from(b: aya::programs::links::FdLink) -> aya::programs::fentry::FEntryLink
  3568. impl core::fmt::Debug for aya::programs::fentry::FEntryLink
  3569. pub fn aya::programs::fentry::FEntryLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3570. impl core::hash::Hash for aya::programs::fentry::FEntryLink
  3571. pub fn aya::programs::fentry::FEntryLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3572. impl core::ops::drop::Drop for aya::programs::fentry::FEntryLink
  3573. pub fn aya::programs::fentry::FEntryLink::drop(&mut self)
  3574. impl equivalent::Equivalent<aya::programs::fentry::FEntryLink> for aya::programs::fentry::FEntryLinkId
  3575. pub fn aya::programs::fentry::FEntryLinkId::equivalent(&self, key: &aya::programs::fentry::FEntryLink) -> bool
  3576. impl core::marker::Freeze for aya::programs::fentry::FEntryLink
  3577. impl core::marker::Send for aya::programs::fentry::FEntryLink
  3578. impl core::marker::Sync for aya::programs::fentry::FEntryLink
  3579. impl core::marker::Unpin for aya::programs::fentry::FEntryLink
  3580. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntryLink
  3581. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntryLink
  3582. impl<Q, K> equivalent::Equivalent<K> for aya::programs::fentry::FEntryLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3583. pub fn aya::programs::fentry::FEntryLink::equivalent(&self, key: &K) -> bool
  3584. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntryLink where U: core::convert::From<T>
  3585. pub fn aya::programs::fentry::FEntryLink::into(self) -> U
  3586. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntryLink where U: core::convert::Into<T>
  3587. pub type aya::programs::fentry::FEntryLink::Error = core::convert::Infallible
  3588. pub fn aya::programs::fentry::FEntryLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3589. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntryLink where U: core::convert::TryFrom<T>
  3590. pub type aya::programs::fentry::FEntryLink::Error = <U as core::convert::TryFrom<T>>::Error
  3591. pub fn aya::programs::fentry::FEntryLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3592. impl<T> core::any::Any for aya::programs::fentry::FEntryLink where T: 'static + ?core::marker::Sized
  3593. pub fn aya::programs::fentry::FEntryLink::type_id(&self) -> core::any::TypeId
  3594. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntryLink where T: ?core::marker::Sized
  3595. pub fn aya::programs::fentry::FEntryLink::borrow(&self) -> &T
  3596. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntryLink where T: ?core::marker::Sized
  3597. pub fn aya::programs::fentry::FEntryLink::borrow_mut(&mut self) -> &mut T
  3598. impl<T> core::convert::From<T> for aya::programs::fentry::FEntryLink
  3599. pub fn aya::programs::fentry::FEntryLink::from(t: T) -> T
  3600. pub struct aya::programs::fentry::FEntryLinkId(_)
  3601. impl core::cmp::Eq for aya::programs::fentry::FEntryLinkId
  3602. impl core::cmp::PartialEq for aya::programs::fentry::FEntryLinkId
  3603. pub fn aya::programs::fentry::FEntryLinkId::eq(&self, other: &aya::programs::fentry::FEntryLinkId) -> bool
  3604. impl core::fmt::Debug for aya::programs::fentry::FEntryLinkId
  3605. pub fn aya::programs::fentry::FEntryLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3606. impl core::hash::Hash for aya::programs::fentry::FEntryLinkId
  3607. pub fn aya::programs::fentry::FEntryLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3608. impl core::marker::StructuralPartialEq for aya::programs::fentry::FEntryLinkId
  3609. impl equivalent::Equivalent<aya::programs::fentry::FEntryLink> for aya::programs::fentry::FEntryLinkId
  3610. pub fn aya::programs::fentry::FEntryLinkId::equivalent(&self, key: &aya::programs::fentry::FEntryLink) -> bool
  3611. impl core::marker::Freeze for aya::programs::fentry::FEntryLinkId
  3612. impl core::marker::Send for aya::programs::fentry::FEntryLinkId
  3613. impl core::marker::Sync for aya::programs::fentry::FEntryLinkId
  3614. impl core::marker::Unpin for aya::programs::fentry::FEntryLinkId
  3615. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntryLinkId
  3616. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntryLinkId
  3617. impl<Q, K> equivalent::Equivalent<K> for aya::programs::fentry::FEntryLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3618. pub fn aya::programs::fentry::FEntryLinkId::equivalent(&self, key: &K) -> bool
  3619. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntryLinkId where U: core::convert::From<T>
  3620. pub fn aya::programs::fentry::FEntryLinkId::into(self) -> U
  3621. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntryLinkId where U: core::convert::Into<T>
  3622. pub type aya::programs::fentry::FEntryLinkId::Error = core::convert::Infallible
  3623. pub fn aya::programs::fentry::FEntryLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3624. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntryLinkId where U: core::convert::TryFrom<T>
  3625. pub type aya::programs::fentry::FEntryLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3626. pub fn aya::programs::fentry::FEntryLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3627. impl<T> core::any::Any for aya::programs::fentry::FEntryLinkId where T: 'static + ?core::marker::Sized
  3628. pub fn aya::programs::fentry::FEntryLinkId::type_id(&self) -> core::any::TypeId
  3629. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntryLinkId where T: ?core::marker::Sized
  3630. pub fn aya::programs::fentry::FEntryLinkId::borrow(&self) -> &T
  3631. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntryLinkId where T: ?core::marker::Sized
  3632. pub fn aya::programs::fentry::FEntryLinkId::borrow_mut(&mut self) -> &mut T
  3633. impl<T> core::convert::From<T> for aya::programs::fentry::FEntryLinkId
  3634. pub fn aya::programs::fentry::FEntryLinkId::from(t: T) -> T
  3635. pub mod aya::programs::fexit
  3636. pub struct aya::programs::fexit::FExit
  3637. impl aya::programs::fexit::FExit
  3638. pub const aya::programs::fexit::FExit::PROGRAM_TYPE: aya::programs::ProgramType
  3639. pub fn aya::programs::fexit::FExit::attach(&mut self) -> core::result::Result<aya::programs::fexit::FExitLinkId, aya::programs::ProgramError>
  3640. pub fn aya::programs::fexit::FExit::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  3641. impl aya::programs::fexit::FExit
  3642. pub fn aya::programs::fexit::FExit::detach(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3643. pub fn aya::programs::fexit::FExit::take_link(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<aya::programs::fexit::FExitLink, aya::programs::ProgramError>
  3644. impl aya::programs::fexit::FExit
  3645. pub fn aya::programs::fexit::FExit::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3646. impl aya::programs::fexit::FExit
  3647. pub fn aya::programs::fexit::FExit::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3648. impl aya::programs::fexit::FExit
  3649. pub unsafe fn aya::programs::fexit::FExit::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3650. impl aya::programs::fexit::FExit
  3651. pub fn aya::programs::fexit::FExit::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3652. impl aya::programs::fexit::FExit
  3653. pub fn aya::programs::fexit::FExit::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3654. pub fn aya::programs::fexit::FExit::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3655. impl aya::programs::fexit::FExit
  3656. pub fn aya::programs::fexit::FExit::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3657. impl core::fmt::Debug for aya::programs::fexit::FExit
  3658. pub fn aya::programs::fexit::FExit::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3659. impl core::ops::drop::Drop for aya::programs::fexit::FExit
  3660. pub fn aya::programs::fexit::FExit::drop(&mut self)
  3661. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit
  3662. pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  3663. pub fn &'a aya::programs::fexit::FExit::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fexit::FExit, aya::programs::ProgramError>
  3664. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit
  3665. pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  3666. pub fn &'a mut aya::programs::fexit::FExit::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fexit::FExit, aya::programs::ProgramError>
  3667. impl core::marker::Freeze for aya::programs::fexit::FExit
  3668. impl core::marker::Send for aya::programs::fexit::FExit
  3669. impl core::marker::Sync for aya::programs::fexit::FExit
  3670. impl core::marker::Unpin for aya::programs::fexit::FExit
  3671. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExit
  3672. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExit
  3673. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExit where U: core::convert::From<T>
  3674. pub fn aya::programs::fexit::FExit::into(self) -> U
  3675. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExit where U: core::convert::Into<T>
  3676. pub type aya::programs::fexit::FExit::Error = core::convert::Infallible
  3677. pub fn aya::programs::fexit::FExit::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3678. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExit where U: core::convert::TryFrom<T>
  3679. pub type aya::programs::fexit::FExit::Error = <U as core::convert::TryFrom<T>>::Error
  3680. pub fn aya::programs::fexit::FExit::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3681. impl<T> core::any::Any for aya::programs::fexit::FExit where T: 'static + ?core::marker::Sized
  3682. pub fn aya::programs::fexit::FExit::type_id(&self) -> core::any::TypeId
  3683. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExit where T: ?core::marker::Sized
  3684. pub fn aya::programs::fexit::FExit::borrow(&self) -> &T
  3685. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExit where T: ?core::marker::Sized
  3686. pub fn aya::programs::fexit::FExit::borrow_mut(&mut self) -> &mut T
  3687. impl<T> core::convert::From<T> for aya::programs::fexit::FExit
  3688. pub fn aya::programs::fexit::FExit::from(t: T) -> T
  3689. pub struct aya::programs::fexit::FExitLink(_)
  3690. impl aya::programs::links::Link for aya::programs::fexit::FExitLink
  3691. pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId
  3692. pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3693. pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id
  3694. impl core::cmp::Eq for aya::programs::fexit::FExitLink
  3695. impl core::cmp::PartialEq for aya::programs::fexit::FExitLink
  3696. pub fn aya::programs::fexit::FExitLink::eq(&self, other: &Self) -> bool
  3697. impl core::convert::From<aya::programs::fexit::FExitLink> for aya::programs::links::FdLink
  3698. pub fn aya::programs::links::FdLink::from(w: aya::programs::fexit::FExitLink) -> aya::programs::links::FdLink
  3699. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fexit::FExitLink
  3700. pub fn aya::programs::fexit::FExitLink::from(b: aya::programs::links::FdLink) -> aya::programs::fexit::FExitLink
  3701. impl core::fmt::Debug for aya::programs::fexit::FExitLink
  3702. pub fn aya::programs::fexit::FExitLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3703. impl core::hash::Hash for aya::programs::fexit::FExitLink
  3704. pub fn aya::programs::fexit::FExitLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3705. impl core::ops::drop::Drop for aya::programs::fexit::FExitLink
  3706. pub fn aya::programs::fexit::FExitLink::drop(&mut self)
  3707. impl equivalent::Equivalent<aya::programs::fexit::FExitLink> for aya::programs::fexit::FExitLinkId
  3708. pub fn aya::programs::fexit::FExitLinkId::equivalent(&self, key: &aya::programs::fexit::FExitLink) -> bool
  3709. impl core::marker::Freeze for aya::programs::fexit::FExitLink
  3710. impl core::marker::Send for aya::programs::fexit::FExitLink
  3711. impl core::marker::Sync for aya::programs::fexit::FExitLink
  3712. impl core::marker::Unpin for aya::programs::fexit::FExitLink
  3713. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExitLink
  3714. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExitLink
  3715. impl<Q, K> equivalent::Equivalent<K> for aya::programs::fexit::FExitLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3716. pub fn aya::programs::fexit::FExitLink::equivalent(&self, key: &K) -> bool
  3717. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExitLink where U: core::convert::From<T>
  3718. pub fn aya::programs::fexit::FExitLink::into(self) -> U
  3719. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExitLink where U: core::convert::Into<T>
  3720. pub type aya::programs::fexit::FExitLink::Error = core::convert::Infallible
  3721. pub fn aya::programs::fexit::FExitLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3722. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExitLink where U: core::convert::TryFrom<T>
  3723. pub type aya::programs::fexit::FExitLink::Error = <U as core::convert::TryFrom<T>>::Error
  3724. pub fn aya::programs::fexit::FExitLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3725. impl<T> core::any::Any for aya::programs::fexit::FExitLink where T: 'static + ?core::marker::Sized
  3726. pub fn aya::programs::fexit::FExitLink::type_id(&self) -> core::any::TypeId
  3727. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExitLink where T: ?core::marker::Sized
  3728. pub fn aya::programs::fexit::FExitLink::borrow(&self) -> &T
  3729. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExitLink where T: ?core::marker::Sized
  3730. pub fn aya::programs::fexit::FExitLink::borrow_mut(&mut self) -> &mut T
  3731. impl<T> core::convert::From<T> for aya::programs::fexit::FExitLink
  3732. pub fn aya::programs::fexit::FExitLink::from(t: T) -> T
  3733. pub struct aya::programs::fexit::FExitLinkId(_)
  3734. impl core::cmp::Eq for aya::programs::fexit::FExitLinkId
  3735. impl core::cmp::PartialEq for aya::programs::fexit::FExitLinkId
  3736. pub fn aya::programs::fexit::FExitLinkId::eq(&self, other: &aya::programs::fexit::FExitLinkId) -> bool
  3737. impl core::fmt::Debug for aya::programs::fexit::FExitLinkId
  3738. pub fn aya::programs::fexit::FExitLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3739. impl core::hash::Hash for aya::programs::fexit::FExitLinkId
  3740. pub fn aya::programs::fexit::FExitLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3741. impl core::marker::StructuralPartialEq for aya::programs::fexit::FExitLinkId
  3742. impl equivalent::Equivalent<aya::programs::fexit::FExitLink> for aya::programs::fexit::FExitLinkId
  3743. pub fn aya::programs::fexit::FExitLinkId::equivalent(&self, key: &aya::programs::fexit::FExitLink) -> bool
  3744. impl core::marker::Freeze for aya::programs::fexit::FExitLinkId
  3745. impl core::marker::Send for aya::programs::fexit::FExitLinkId
  3746. impl core::marker::Sync for aya::programs::fexit::FExitLinkId
  3747. impl core::marker::Unpin for aya::programs::fexit::FExitLinkId
  3748. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExitLinkId
  3749. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExitLinkId
  3750. impl<Q, K> equivalent::Equivalent<K> for aya::programs::fexit::FExitLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3751. pub fn aya::programs::fexit::FExitLinkId::equivalent(&self, key: &K) -> bool
  3752. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExitLinkId where U: core::convert::From<T>
  3753. pub fn aya::programs::fexit::FExitLinkId::into(self) -> U
  3754. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExitLinkId where U: core::convert::Into<T>
  3755. pub type aya::programs::fexit::FExitLinkId::Error = core::convert::Infallible
  3756. pub fn aya::programs::fexit::FExitLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3757. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExitLinkId where U: core::convert::TryFrom<T>
  3758. pub type aya::programs::fexit::FExitLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3759. pub fn aya::programs::fexit::FExitLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3760. impl<T> core::any::Any for aya::programs::fexit::FExitLinkId where T: 'static + ?core::marker::Sized
  3761. pub fn aya::programs::fexit::FExitLinkId::type_id(&self) -> core::any::TypeId
  3762. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExitLinkId where T: ?core::marker::Sized
  3763. pub fn aya::programs::fexit::FExitLinkId::borrow(&self) -> &T
  3764. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExitLinkId where T: ?core::marker::Sized
  3765. pub fn aya::programs::fexit::FExitLinkId::borrow_mut(&mut self) -> &mut T
  3766. impl<T> core::convert::From<T> for aya::programs::fexit::FExitLinkId
  3767. pub fn aya::programs::fexit::FExitLinkId::from(t: T) -> T
  3768. pub mod aya::programs::flow_dissector
  3769. pub struct aya::programs::flow_dissector::FlowDissector
  3770. impl aya::programs::flow_dissector::FlowDissector
  3771. pub const aya::programs::flow_dissector::FlowDissector::PROGRAM_TYPE: aya::programs::ProgramType
  3772. pub fn aya::programs::flow_dissector::FlowDissector::attach<T: std::os::fd::owned::AsFd>(&mut self, netns: T) -> core::result::Result<aya::programs::flow_dissector::FlowDissectorLinkId, aya::programs::ProgramError>
  3773. pub fn aya::programs::flow_dissector::FlowDissector::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3774. impl aya::programs::flow_dissector::FlowDissector
  3775. pub fn aya::programs::flow_dissector::FlowDissector::detach(&mut self, link_id: aya::programs::flow_dissector::FlowDissectorLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3776. pub fn aya::programs::flow_dissector::FlowDissector::take_link(&mut self, link_id: aya::programs::flow_dissector::FlowDissectorLinkId) -> core::result::Result<aya::programs::flow_dissector::FlowDissectorLink, aya::programs::ProgramError>
  3777. impl aya::programs::flow_dissector::FlowDissector
  3778. pub fn aya::programs::flow_dissector::FlowDissector::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3779. impl aya::programs::flow_dissector::FlowDissector
  3780. pub fn aya::programs::flow_dissector::FlowDissector::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3781. impl aya::programs::flow_dissector::FlowDissector
  3782. pub fn aya::programs::flow_dissector::FlowDissector::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3783. impl aya::programs::flow_dissector::FlowDissector
  3784. pub fn aya::programs::flow_dissector::FlowDissector::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3785. pub fn aya::programs::flow_dissector::FlowDissector::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3786. impl aya::programs::flow_dissector::FlowDissector
  3787. pub fn aya::programs::flow_dissector::FlowDissector::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3788. impl core::fmt::Debug for aya::programs::flow_dissector::FlowDissector
  3789. pub fn aya::programs::flow_dissector::FlowDissector::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3790. impl core::ops::drop::Drop for aya::programs::flow_dissector::FlowDissector
  3791. pub fn aya::programs::flow_dissector::FlowDissector::drop(&mut self)
  3792. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::flow_dissector::FlowDissector
  3793. pub type &'a aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  3794. pub fn &'a aya::programs::flow_dissector::FlowDissector::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  3795. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::flow_dissector::FlowDissector
  3796. pub type &'a mut aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  3797. pub fn &'a mut aya::programs::flow_dissector::FlowDissector::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  3798. impl core::marker::Freeze for aya::programs::flow_dissector::FlowDissector
  3799. impl core::marker::Send for aya::programs::flow_dissector::FlowDissector
  3800. impl core::marker::Sync for aya::programs::flow_dissector::FlowDissector
  3801. impl core::marker::Unpin for aya::programs::flow_dissector::FlowDissector
  3802. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::flow_dissector::FlowDissector
  3803. impl core::panic::unwind_safe::UnwindSafe for aya::programs::flow_dissector::FlowDissector
  3804. impl<T, U> core::convert::Into<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::From<T>
  3805. pub fn aya::programs::flow_dissector::FlowDissector::into(self) -> U
  3806. impl<T, U> core::convert::TryFrom<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::Into<T>
  3807. pub type aya::programs::flow_dissector::FlowDissector::Error = core::convert::Infallible
  3808. pub fn aya::programs::flow_dissector::FlowDissector::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3809. impl<T, U> core::convert::TryInto<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::TryFrom<T>
  3810. pub type aya::programs::flow_dissector::FlowDissector::Error = <U as core::convert::TryFrom<T>>::Error
  3811. pub fn aya::programs::flow_dissector::FlowDissector::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3812. impl<T> core::any::Any for aya::programs::flow_dissector::FlowDissector where T: 'static + ?core::marker::Sized
  3813. pub fn aya::programs::flow_dissector::FlowDissector::type_id(&self) -> core::any::TypeId
  3814. impl<T> core::borrow::Borrow<T> for aya::programs::flow_dissector::FlowDissector where T: ?core::marker::Sized
  3815. pub fn aya::programs::flow_dissector::FlowDissector::borrow(&self) -> &T
  3816. impl<T> core::borrow::BorrowMut<T> for aya::programs::flow_dissector::FlowDissector where T: ?core::marker::Sized
  3817. pub fn aya::programs::flow_dissector::FlowDissector::borrow_mut(&mut self) -> &mut T
  3818. impl<T> core::convert::From<T> for aya::programs::flow_dissector::FlowDissector
  3819. pub fn aya::programs::flow_dissector::FlowDissector::from(t: T) -> T
  3820. pub struct aya::programs::flow_dissector::FlowDissectorLink(_)
  3821. impl aya::programs::links::Link for aya::programs::flow_dissector::FlowDissectorLink
  3822. pub type aya::programs::flow_dissector::FlowDissectorLink::Id = aya::programs::flow_dissector::FlowDissectorLinkId
  3823. pub fn aya::programs::flow_dissector::FlowDissectorLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3824. pub fn aya::programs::flow_dissector::FlowDissectorLink::id(&self) -> Self::Id
  3825. impl core::cmp::Eq for aya::programs::flow_dissector::FlowDissectorLink
  3826. impl core::cmp::PartialEq for aya::programs::flow_dissector::FlowDissectorLink
  3827. pub fn aya::programs::flow_dissector::FlowDissectorLink::eq(&self, other: &Self) -> bool
  3828. impl core::fmt::Debug for aya::programs::flow_dissector::FlowDissectorLink
  3829. pub fn aya::programs::flow_dissector::FlowDissectorLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3830. impl core::hash::Hash for aya::programs::flow_dissector::FlowDissectorLink
  3831. pub fn aya::programs::flow_dissector::FlowDissectorLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3832. impl core::ops::drop::Drop for aya::programs::flow_dissector::FlowDissectorLink
  3833. pub fn aya::programs::flow_dissector::FlowDissectorLink::drop(&mut self)
  3834. impl equivalent::Equivalent<aya::programs::flow_dissector::FlowDissectorLink> for aya::programs::flow_dissector::FlowDissectorLinkId
  3835. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::equivalent(&self, key: &aya::programs::flow_dissector::FlowDissectorLink) -> bool
  3836. impl core::marker::Freeze for aya::programs::flow_dissector::FlowDissectorLink
  3837. impl core::marker::Send for aya::programs::flow_dissector::FlowDissectorLink
  3838. impl core::marker::Sync for aya::programs::flow_dissector::FlowDissectorLink
  3839. impl core::marker::Unpin for aya::programs::flow_dissector::FlowDissectorLink
  3840. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::flow_dissector::FlowDissectorLink
  3841. impl core::panic::unwind_safe::UnwindSafe for aya::programs::flow_dissector::FlowDissectorLink
  3842. impl<Q, K> equivalent::Equivalent<K> for aya::programs::flow_dissector::FlowDissectorLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3843. pub fn aya::programs::flow_dissector::FlowDissectorLink::equivalent(&self, key: &K) -> bool
  3844. impl<T, U> core::convert::Into<U> for aya::programs::flow_dissector::FlowDissectorLink where U: core::convert::From<T>
  3845. pub fn aya::programs::flow_dissector::FlowDissectorLink::into(self) -> U
  3846. impl<T, U> core::convert::TryFrom<U> for aya::programs::flow_dissector::FlowDissectorLink where U: core::convert::Into<T>
  3847. pub type aya::programs::flow_dissector::FlowDissectorLink::Error = core::convert::Infallible
  3848. pub fn aya::programs::flow_dissector::FlowDissectorLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3849. impl<T, U> core::convert::TryInto<U> for aya::programs::flow_dissector::FlowDissectorLink where U: core::convert::TryFrom<T>
  3850. pub type aya::programs::flow_dissector::FlowDissectorLink::Error = <U as core::convert::TryFrom<T>>::Error
  3851. pub fn aya::programs::flow_dissector::FlowDissectorLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3852. impl<T> core::any::Any for aya::programs::flow_dissector::FlowDissectorLink where T: 'static + ?core::marker::Sized
  3853. pub fn aya::programs::flow_dissector::FlowDissectorLink::type_id(&self) -> core::any::TypeId
  3854. impl<T> core::borrow::Borrow<T> for aya::programs::flow_dissector::FlowDissectorLink where T: ?core::marker::Sized
  3855. pub fn aya::programs::flow_dissector::FlowDissectorLink::borrow(&self) -> &T
  3856. impl<T> core::borrow::BorrowMut<T> for aya::programs::flow_dissector::FlowDissectorLink where T: ?core::marker::Sized
  3857. pub fn aya::programs::flow_dissector::FlowDissectorLink::borrow_mut(&mut self) -> &mut T
  3858. impl<T> core::convert::From<T> for aya::programs::flow_dissector::FlowDissectorLink
  3859. pub fn aya::programs::flow_dissector::FlowDissectorLink::from(t: T) -> T
  3860. pub struct aya::programs::flow_dissector::FlowDissectorLinkId(_)
  3861. impl core::cmp::Eq for aya::programs::flow_dissector::FlowDissectorLinkId
  3862. impl core::cmp::PartialEq for aya::programs::flow_dissector::FlowDissectorLinkId
  3863. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::eq(&self, other: &aya::programs::flow_dissector::FlowDissectorLinkId) -> bool
  3864. impl core::fmt::Debug for aya::programs::flow_dissector::FlowDissectorLinkId
  3865. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3866. impl core::hash::Hash for aya::programs::flow_dissector::FlowDissectorLinkId
  3867. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3868. impl core::marker::StructuralPartialEq for aya::programs::flow_dissector::FlowDissectorLinkId
  3869. impl equivalent::Equivalent<aya::programs::flow_dissector::FlowDissectorLink> for aya::programs::flow_dissector::FlowDissectorLinkId
  3870. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::equivalent(&self, key: &aya::programs::flow_dissector::FlowDissectorLink) -> bool
  3871. impl core::marker::Freeze for aya::programs::flow_dissector::FlowDissectorLinkId
  3872. impl core::marker::Send for aya::programs::flow_dissector::FlowDissectorLinkId
  3873. impl core::marker::Sync for aya::programs::flow_dissector::FlowDissectorLinkId
  3874. impl core::marker::Unpin for aya::programs::flow_dissector::FlowDissectorLinkId
  3875. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::flow_dissector::FlowDissectorLinkId
  3876. impl core::panic::unwind_safe::UnwindSafe for aya::programs::flow_dissector::FlowDissectorLinkId
  3877. impl<Q, K> equivalent::Equivalent<K> for aya::programs::flow_dissector::FlowDissectorLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3878. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::equivalent(&self, key: &K) -> bool
  3879. impl<T, U> core::convert::Into<U> for aya::programs::flow_dissector::FlowDissectorLinkId where U: core::convert::From<T>
  3880. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::into(self) -> U
  3881. impl<T, U> core::convert::TryFrom<U> for aya::programs::flow_dissector::FlowDissectorLinkId where U: core::convert::Into<T>
  3882. pub type aya::programs::flow_dissector::FlowDissectorLinkId::Error = core::convert::Infallible
  3883. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3884. impl<T, U> core::convert::TryInto<U> for aya::programs::flow_dissector::FlowDissectorLinkId where U: core::convert::TryFrom<T>
  3885. pub type aya::programs::flow_dissector::FlowDissectorLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3886. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3887. impl<T> core::any::Any for aya::programs::flow_dissector::FlowDissectorLinkId where T: 'static + ?core::marker::Sized
  3888. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::type_id(&self) -> core::any::TypeId
  3889. impl<T> core::borrow::Borrow<T> for aya::programs::flow_dissector::FlowDissectorLinkId where T: ?core::marker::Sized
  3890. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::borrow(&self) -> &T
  3891. impl<T> core::borrow::BorrowMut<T> for aya::programs::flow_dissector::FlowDissectorLinkId where T: ?core::marker::Sized
  3892. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::borrow_mut(&mut self) -> &mut T
  3893. impl<T> core::convert::From<T> for aya::programs::flow_dissector::FlowDissectorLinkId
  3894. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::from(t: T) -> T
  3895. pub mod aya::programs::iter
  3896. pub struct aya::programs::iter::Iter
  3897. impl aya::programs::iter::Iter
  3898. pub const aya::programs::iter::Iter::PROGRAM_TYPE: aya::programs::ProgramType
  3899. pub fn aya::programs::iter::Iter::attach(&mut self) -> core::result::Result<aya::programs::iter::IterLinkId, aya::programs::ProgramError>
  3900. pub fn aya::programs::iter::Iter::load(&mut self, iter_type: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  3901. impl aya::programs::iter::Iter
  3902. pub fn aya::programs::iter::Iter::detach(&mut self, link_id: aya::programs::iter::IterLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3903. pub fn aya::programs::iter::Iter::take_link(&mut self, link_id: aya::programs::iter::IterLinkId) -> core::result::Result<aya::programs::iter::IterLink, aya::programs::ProgramError>
  3904. impl aya::programs::iter::Iter
  3905. pub fn aya::programs::iter::Iter::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3906. impl aya::programs::iter::Iter
  3907. pub fn aya::programs::iter::Iter::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3908. impl aya::programs::iter::Iter
  3909. pub fn aya::programs::iter::Iter::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3910. impl aya::programs::iter::Iter
  3911. pub fn aya::programs::iter::Iter::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3912. impl aya::programs::iter::Iter
  3913. pub fn aya::programs::iter::Iter::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3914. pub fn aya::programs::iter::Iter::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3915. impl aya::programs::iter::Iter
  3916. pub fn aya::programs::iter::Iter::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3917. impl core::fmt::Debug for aya::programs::iter::Iter
  3918. pub fn aya::programs::iter::Iter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3919. impl core::ops::drop::Drop for aya::programs::iter::Iter
  3920. pub fn aya::programs::iter::Iter::drop(&mut self)
  3921. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::iter::Iter
  3922. pub type &'a aya::programs::iter::Iter::Error = aya::programs::ProgramError
  3923. pub fn &'a aya::programs::iter::Iter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::iter::Iter, aya::programs::ProgramError>
  3924. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::iter::Iter
  3925. pub type &'a mut aya::programs::iter::Iter::Error = aya::programs::ProgramError
  3926. pub fn &'a mut aya::programs::iter::Iter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::iter::Iter, aya::programs::ProgramError>
  3927. impl core::marker::Freeze for aya::programs::iter::Iter
  3928. impl core::marker::Send for aya::programs::iter::Iter
  3929. impl core::marker::Sync for aya::programs::iter::Iter
  3930. impl core::marker::Unpin for aya::programs::iter::Iter
  3931. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::Iter
  3932. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::Iter
  3933. impl<T, U> core::convert::Into<U> for aya::programs::iter::Iter where U: core::convert::From<T>
  3934. pub fn aya::programs::iter::Iter::into(self) -> U
  3935. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::Iter where U: core::convert::Into<T>
  3936. pub type aya::programs::iter::Iter::Error = core::convert::Infallible
  3937. pub fn aya::programs::iter::Iter::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3938. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::Iter where U: core::convert::TryFrom<T>
  3939. pub type aya::programs::iter::Iter::Error = <U as core::convert::TryFrom<T>>::Error
  3940. pub fn aya::programs::iter::Iter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3941. impl<T> core::any::Any for aya::programs::iter::Iter where T: 'static + ?core::marker::Sized
  3942. pub fn aya::programs::iter::Iter::type_id(&self) -> core::any::TypeId
  3943. impl<T> core::borrow::Borrow<T> for aya::programs::iter::Iter where T: ?core::marker::Sized
  3944. pub fn aya::programs::iter::Iter::borrow(&self) -> &T
  3945. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::Iter where T: ?core::marker::Sized
  3946. pub fn aya::programs::iter::Iter::borrow_mut(&mut self) -> &mut T
  3947. impl<T> core::convert::From<T> for aya::programs::iter::Iter
  3948. pub fn aya::programs::iter::Iter::from(t: T) -> T
  3949. pub struct aya::programs::iter::IterFd
  3950. impl core::fmt::Debug for aya::programs::iter::IterFd
  3951. pub fn aya::programs::iter::IterFd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3952. impl std::os::fd::owned::AsFd for aya::programs::iter::IterFd
  3953. pub fn aya::programs::iter::IterFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  3954. impl core::marker::Freeze for aya::programs::iter::IterFd
  3955. impl core::marker::Send for aya::programs::iter::IterFd
  3956. impl core::marker::Sync for aya::programs::iter::IterFd
  3957. impl core::marker::Unpin for aya::programs::iter::IterFd
  3958. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::IterFd
  3959. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::IterFd
  3960. impl<T, U> core::convert::Into<U> for aya::programs::iter::IterFd where U: core::convert::From<T>
  3961. pub fn aya::programs::iter::IterFd::into(self) -> U
  3962. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::IterFd where U: core::convert::Into<T>
  3963. pub type aya::programs::iter::IterFd::Error = core::convert::Infallible
  3964. pub fn aya::programs::iter::IterFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3965. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::IterFd where U: core::convert::TryFrom<T>
  3966. pub type aya::programs::iter::IterFd::Error = <U as core::convert::TryFrom<T>>::Error
  3967. pub fn aya::programs::iter::IterFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3968. impl<T> core::any::Any for aya::programs::iter::IterFd where T: 'static + ?core::marker::Sized
  3969. pub fn aya::programs::iter::IterFd::type_id(&self) -> core::any::TypeId
  3970. impl<T> core::borrow::Borrow<T> for aya::programs::iter::IterFd where T: ?core::marker::Sized
  3971. pub fn aya::programs::iter::IterFd::borrow(&self) -> &T
  3972. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::IterFd where T: ?core::marker::Sized
  3973. pub fn aya::programs::iter::IterFd::borrow_mut(&mut self) -> &mut T
  3974. impl<T> core::convert::From<T> for aya::programs::iter::IterFd
  3975. pub fn aya::programs::iter::IterFd::from(t: T) -> T
  3976. pub struct aya::programs::iter::IterLink(_)
  3977. impl aya::programs::iter::IterLink
  3978. pub fn aya::programs::iter::IterLink::into_file(self) -> core::result::Result<std::fs::File, aya::programs::links::LinkError>
  3979. impl aya::programs::links::Link for aya::programs::iter::IterLink
  3980. pub type aya::programs::iter::IterLink::Id = aya::programs::iter::IterLinkId
  3981. pub fn aya::programs::iter::IterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3982. pub fn aya::programs::iter::IterLink::id(&self) -> Self::Id
  3983. impl core::cmp::Eq for aya::programs::iter::IterLink
  3984. impl core::cmp::PartialEq for aya::programs::iter::IterLink
  3985. pub fn aya::programs::iter::IterLink::eq(&self, other: &Self) -> bool
  3986. impl core::convert::TryFrom<aya::programs::iter::IterLink> for aya::programs::links::FdLink
  3987. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  3988. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::iter::IterLink) -> core::result::Result<Self, Self::Error>
  3989. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::iter::IterLink
  3990. pub type aya::programs::iter::IterLink::Error = aya::programs::links::LinkError
  3991. pub fn aya::programs::iter::IterLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  3992. impl core::fmt::Debug for aya::programs::iter::IterLink
  3993. pub fn aya::programs::iter::IterLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3994. impl core::hash::Hash for aya::programs::iter::IterLink
  3995. pub fn aya::programs::iter::IterLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3996. impl core::ops::drop::Drop for aya::programs::iter::IterLink
  3997. pub fn aya::programs::iter::IterLink::drop(&mut self)
  3998. impl equivalent::Equivalent<aya::programs::iter::IterLink> for aya::programs::iter::IterLinkId
  3999. pub fn aya::programs::iter::IterLinkId::equivalent(&self, key: &aya::programs::iter::IterLink) -> bool
  4000. impl core::marker::Freeze for aya::programs::iter::IterLink
  4001. impl core::marker::Send for aya::programs::iter::IterLink
  4002. impl core::marker::Sync for aya::programs::iter::IterLink
  4003. impl core::marker::Unpin for aya::programs::iter::IterLink
  4004. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::IterLink
  4005. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::IterLink
  4006. impl<Q, K> equivalent::Equivalent<K> for aya::programs::iter::IterLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4007. pub fn aya::programs::iter::IterLink::equivalent(&self, key: &K) -> bool
  4008. impl<T, U> core::convert::Into<U> for aya::programs::iter::IterLink where U: core::convert::From<T>
  4009. pub fn aya::programs::iter::IterLink::into(self) -> U
  4010. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::IterLink where U: core::convert::Into<T>
  4011. pub type aya::programs::iter::IterLink::Error = core::convert::Infallible
  4012. pub fn aya::programs::iter::IterLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4013. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::IterLink where U: core::convert::TryFrom<T>
  4014. pub type aya::programs::iter::IterLink::Error = <U as core::convert::TryFrom<T>>::Error
  4015. pub fn aya::programs::iter::IterLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4016. impl<T> core::any::Any for aya::programs::iter::IterLink where T: 'static + ?core::marker::Sized
  4017. pub fn aya::programs::iter::IterLink::type_id(&self) -> core::any::TypeId
  4018. impl<T> core::borrow::Borrow<T> for aya::programs::iter::IterLink where T: ?core::marker::Sized
  4019. pub fn aya::programs::iter::IterLink::borrow(&self) -> &T
  4020. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::IterLink where T: ?core::marker::Sized
  4021. pub fn aya::programs::iter::IterLink::borrow_mut(&mut self) -> &mut T
  4022. impl<T> core::convert::From<T> for aya::programs::iter::IterLink
  4023. pub fn aya::programs::iter::IterLink::from(t: T) -> T
  4024. pub struct aya::programs::iter::IterLinkId(_)
  4025. impl core::cmp::Eq for aya::programs::iter::IterLinkId
  4026. impl core::cmp::PartialEq for aya::programs::iter::IterLinkId
  4027. pub fn aya::programs::iter::IterLinkId::eq(&self, other: &aya::programs::iter::IterLinkId) -> bool
  4028. impl core::fmt::Debug for aya::programs::iter::IterLinkId
  4029. pub fn aya::programs::iter::IterLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4030. impl core::hash::Hash for aya::programs::iter::IterLinkId
  4031. pub fn aya::programs::iter::IterLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4032. impl core::marker::StructuralPartialEq for aya::programs::iter::IterLinkId
  4033. impl equivalent::Equivalent<aya::programs::iter::IterLink> for aya::programs::iter::IterLinkId
  4034. pub fn aya::programs::iter::IterLinkId::equivalent(&self, key: &aya::programs::iter::IterLink) -> bool
  4035. impl core::marker::Freeze for aya::programs::iter::IterLinkId
  4036. impl core::marker::Send for aya::programs::iter::IterLinkId
  4037. impl core::marker::Sync for aya::programs::iter::IterLinkId
  4038. impl core::marker::Unpin for aya::programs::iter::IterLinkId
  4039. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::IterLinkId
  4040. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::IterLinkId
  4041. impl<Q, K> equivalent::Equivalent<K> for aya::programs::iter::IterLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4042. pub fn aya::programs::iter::IterLinkId::equivalent(&self, key: &K) -> bool
  4043. impl<T, U> core::convert::Into<U> for aya::programs::iter::IterLinkId where U: core::convert::From<T>
  4044. pub fn aya::programs::iter::IterLinkId::into(self) -> U
  4045. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::IterLinkId where U: core::convert::Into<T>
  4046. pub type aya::programs::iter::IterLinkId::Error = core::convert::Infallible
  4047. pub fn aya::programs::iter::IterLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4048. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::IterLinkId where U: core::convert::TryFrom<T>
  4049. pub type aya::programs::iter::IterLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4050. pub fn aya::programs::iter::IterLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4051. impl<T> core::any::Any for aya::programs::iter::IterLinkId where T: 'static + ?core::marker::Sized
  4052. pub fn aya::programs::iter::IterLinkId::type_id(&self) -> core::any::TypeId
  4053. impl<T> core::borrow::Borrow<T> for aya::programs::iter::IterLinkId where T: ?core::marker::Sized
  4054. pub fn aya::programs::iter::IterLinkId::borrow(&self) -> &T
  4055. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::IterLinkId where T: ?core::marker::Sized
  4056. pub fn aya::programs::iter::IterLinkId::borrow_mut(&mut self) -> &mut T
  4057. impl<T> core::convert::From<T> for aya::programs::iter::IterLinkId
  4058. pub fn aya::programs::iter::IterLinkId::from(t: T) -> T
  4059. pub mod aya::programs::kprobe
  4060. pub enum aya::programs::kprobe::KProbeError
  4061. pub aya::programs::kprobe::KProbeError::FileError
  4062. pub aya::programs::kprobe::KProbeError::FileError::filename: std::path::PathBuf
  4063. pub aya::programs::kprobe::KProbeError::FileError::io_error: std::io::error::Error
  4064. impl core::convert::From<aya::programs::kprobe::KProbeError> for aya::programs::ProgramError
  4065. pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self
  4066. impl core::error::Error for aya::programs::kprobe::KProbeError
  4067. pub fn aya::programs::kprobe::KProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  4068. impl core::fmt::Debug for aya::programs::kprobe::KProbeError
  4069. pub fn aya::programs::kprobe::KProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4070. impl core::fmt::Display for aya::programs::kprobe::KProbeError
  4071. pub fn aya::programs::kprobe::KProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4072. impl core::marker::Freeze for aya::programs::kprobe::KProbeError
  4073. impl core::marker::Send for aya::programs::kprobe::KProbeError
  4074. impl core::marker::Sync for aya::programs::kprobe::KProbeError
  4075. impl core::marker::Unpin for aya::programs::kprobe::KProbeError
  4076. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeError
  4077. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeError
  4078. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeError where U: core::convert::From<T>
  4079. pub fn aya::programs::kprobe::KProbeError::into(self) -> U
  4080. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeError where U: core::convert::Into<T>
  4081. pub type aya::programs::kprobe::KProbeError::Error = core::convert::Infallible
  4082. pub fn aya::programs::kprobe::KProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4083. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeError where U: core::convert::TryFrom<T>
  4084. pub type aya::programs::kprobe::KProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  4085. pub fn aya::programs::kprobe::KProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4086. impl<T> alloc::string::ToString for aya::programs::kprobe::KProbeError where T: core::fmt::Display + ?core::marker::Sized
  4087. pub fn aya::programs::kprobe::KProbeError::to_string(&self) -> alloc::string::String
  4088. impl<T> core::any::Any for aya::programs::kprobe::KProbeError where T: 'static + ?core::marker::Sized
  4089. pub fn aya::programs::kprobe::KProbeError::type_id(&self) -> core::any::TypeId
  4090. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeError where T: ?core::marker::Sized
  4091. pub fn aya::programs::kprobe::KProbeError::borrow(&self) -> &T
  4092. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeError where T: ?core::marker::Sized
  4093. pub fn aya::programs::kprobe::KProbeError::borrow_mut(&mut self) -> &mut T
  4094. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeError
  4095. pub fn aya::programs::kprobe::KProbeError::from(t: T) -> T
  4096. pub struct aya::programs::kprobe::KProbe
  4097. impl aya::programs::kprobe::KProbe
  4098. pub const aya::programs::kprobe::KProbe::PROGRAM_TYPE: aya::programs::ProgramType
  4099. pub fn aya::programs::kprobe::KProbe::attach<T: core::convert::AsRef<std::ffi::os_str::OsStr>>(&mut self, fn_name: T, offset: u64) -> core::result::Result<aya::programs::kprobe::KProbeLinkId, aya::programs::ProgramError>
  4100. pub fn aya::programs::kprobe::KProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  4101. pub fn aya::programs::kprobe::KProbe::kind(&self) -> aya::programs::ProbeKind
  4102. pub fn aya::programs::kprobe::KProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4103. impl aya::programs::kprobe::KProbe
  4104. pub fn aya::programs::kprobe::KProbe::detach(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4105. pub fn aya::programs::kprobe::KProbe::take_link(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<aya::programs::kprobe::KProbeLink, aya::programs::ProgramError>
  4106. impl aya::programs::kprobe::KProbe
  4107. pub fn aya::programs::kprobe::KProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4108. impl aya::programs::kprobe::KProbe
  4109. pub unsafe fn aya::programs::kprobe::KProbe::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  4110. impl aya::programs::kprobe::KProbe
  4111. pub fn aya::programs::kprobe::KProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4112. impl aya::programs::kprobe::KProbe
  4113. pub fn aya::programs::kprobe::KProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4114. pub fn aya::programs::kprobe::KProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4115. impl aya::programs::kprobe::KProbe
  4116. pub fn aya::programs::kprobe::KProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4117. impl core::fmt::Debug for aya::programs::kprobe::KProbe
  4118. pub fn aya::programs::kprobe::KProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4119. impl core::ops::drop::Drop for aya::programs::kprobe::KProbe
  4120. pub fn aya::programs::kprobe::KProbe::drop(&mut self)
  4121. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe
  4122. pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  4123. pub fn &'a aya::programs::kprobe::KProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  4124. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe
  4125. pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  4126. pub fn &'a mut aya::programs::kprobe::KProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  4127. impl core::marker::Freeze for aya::programs::kprobe::KProbe
  4128. impl core::marker::Send for aya::programs::kprobe::KProbe
  4129. impl core::marker::Sync for aya::programs::kprobe::KProbe
  4130. impl core::marker::Unpin for aya::programs::kprobe::KProbe
  4131. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbe
  4132. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbe
  4133. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbe where U: core::convert::From<T>
  4134. pub fn aya::programs::kprobe::KProbe::into(self) -> U
  4135. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbe where U: core::convert::Into<T>
  4136. pub type aya::programs::kprobe::KProbe::Error = core::convert::Infallible
  4137. pub fn aya::programs::kprobe::KProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4138. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbe where U: core::convert::TryFrom<T>
  4139. pub type aya::programs::kprobe::KProbe::Error = <U as core::convert::TryFrom<T>>::Error
  4140. pub fn aya::programs::kprobe::KProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4141. impl<T> core::any::Any for aya::programs::kprobe::KProbe where T: 'static + ?core::marker::Sized
  4142. pub fn aya::programs::kprobe::KProbe::type_id(&self) -> core::any::TypeId
  4143. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbe where T: ?core::marker::Sized
  4144. pub fn aya::programs::kprobe::KProbe::borrow(&self) -> &T
  4145. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbe where T: ?core::marker::Sized
  4146. pub fn aya::programs::kprobe::KProbe::borrow_mut(&mut self) -> &mut T
  4147. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbe
  4148. pub fn aya::programs::kprobe::KProbe::from(t: T) -> T
  4149. pub struct aya::programs::kprobe::KProbeLink(_)
  4150. impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink
  4151. pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId
  4152. pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4153. pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id
  4154. impl core::cmp::Eq for aya::programs::kprobe::KProbeLink
  4155. impl core::cmp::PartialEq for aya::programs::kprobe::KProbeLink
  4156. pub fn aya::programs::kprobe::KProbeLink::eq(&self, other: &Self) -> bool
  4157. impl core::convert::TryFrom<aya::programs::kprobe::KProbeLink> for aya::programs::links::FdLink
  4158. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4159. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::kprobe::KProbeLink) -> core::result::Result<Self, Self::Error>
  4160. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::kprobe::KProbeLink
  4161. pub type aya::programs::kprobe::KProbeLink::Error = aya::programs::links::LinkError
  4162. pub fn aya::programs::kprobe::KProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4163. impl core::fmt::Debug for aya::programs::kprobe::KProbeLink
  4164. pub fn aya::programs::kprobe::KProbeLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4165. impl core::hash::Hash for aya::programs::kprobe::KProbeLink
  4166. pub fn aya::programs::kprobe::KProbeLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  4167. impl core::ops::drop::Drop for aya::programs::kprobe::KProbeLink
  4168. pub fn aya::programs::kprobe::KProbeLink::drop(&mut self)
  4169. impl equivalent::Equivalent<aya::programs::kprobe::KProbeLink> for aya::programs::kprobe::KProbeLinkId
  4170. pub fn aya::programs::kprobe::KProbeLinkId::equivalent(&self, key: &aya::programs::kprobe::KProbeLink) -> bool
  4171. impl core::marker::Freeze for aya::programs::kprobe::KProbeLink
  4172. impl core::marker::Send for aya::programs::kprobe::KProbeLink
  4173. impl core::marker::Sync for aya::programs::kprobe::KProbeLink
  4174. impl core::marker::Unpin for aya::programs::kprobe::KProbeLink
  4175. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeLink
  4176. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeLink
  4177. impl<Q, K> equivalent::Equivalent<K> for aya::programs::kprobe::KProbeLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4178. pub fn aya::programs::kprobe::KProbeLink::equivalent(&self, key: &K) -> bool
  4179. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeLink where U: core::convert::From<T>
  4180. pub fn aya::programs::kprobe::KProbeLink::into(self) -> U
  4181. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeLink where U: core::convert::Into<T>
  4182. pub type aya::programs::kprobe::KProbeLink::Error = core::convert::Infallible
  4183. pub fn aya::programs::kprobe::KProbeLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4184. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeLink where U: core::convert::TryFrom<T>
  4185. pub type aya::programs::kprobe::KProbeLink::Error = <U as core::convert::TryFrom<T>>::Error
  4186. pub fn aya::programs::kprobe::KProbeLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4187. impl<T> core::any::Any for aya::programs::kprobe::KProbeLink where T: 'static + ?core::marker::Sized
  4188. pub fn aya::programs::kprobe::KProbeLink::type_id(&self) -> core::any::TypeId
  4189. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeLink where T: ?core::marker::Sized
  4190. pub fn aya::programs::kprobe::KProbeLink::borrow(&self) -> &T
  4191. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeLink where T: ?core::marker::Sized
  4192. pub fn aya::programs::kprobe::KProbeLink::borrow_mut(&mut self) -> &mut T
  4193. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeLink
  4194. pub fn aya::programs::kprobe::KProbeLink::from(t: T) -> T
  4195. pub struct aya::programs::kprobe::KProbeLinkId(_)
  4196. impl core::cmp::Eq for aya::programs::kprobe::KProbeLinkId
  4197. impl core::cmp::PartialEq for aya::programs::kprobe::KProbeLinkId
  4198. pub fn aya::programs::kprobe::KProbeLinkId::eq(&self, other: &aya::programs::kprobe::KProbeLinkId) -> bool
  4199. impl core::fmt::Debug for aya::programs::kprobe::KProbeLinkId
  4200. pub fn aya::programs::kprobe::KProbeLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4201. impl core::hash::Hash for aya::programs::kprobe::KProbeLinkId
  4202. pub fn aya::programs::kprobe::KProbeLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4203. impl core::marker::StructuralPartialEq for aya::programs::kprobe::KProbeLinkId
  4204. impl equivalent::Equivalent<aya::programs::kprobe::KProbeLink> for aya::programs::kprobe::KProbeLinkId
  4205. pub fn aya::programs::kprobe::KProbeLinkId::equivalent(&self, key: &aya::programs::kprobe::KProbeLink) -> bool
  4206. impl core::marker::Freeze for aya::programs::kprobe::KProbeLinkId
  4207. impl core::marker::Send for aya::programs::kprobe::KProbeLinkId
  4208. impl core::marker::Sync for aya::programs::kprobe::KProbeLinkId
  4209. impl core::marker::Unpin for aya::programs::kprobe::KProbeLinkId
  4210. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeLinkId
  4211. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeLinkId
  4212. impl<Q, K> equivalent::Equivalent<K> for aya::programs::kprobe::KProbeLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4213. pub fn aya::programs::kprobe::KProbeLinkId::equivalent(&self, key: &K) -> bool
  4214. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeLinkId where U: core::convert::From<T>
  4215. pub fn aya::programs::kprobe::KProbeLinkId::into(self) -> U
  4216. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeLinkId where U: core::convert::Into<T>
  4217. pub type aya::programs::kprobe::KProbeLinkId::Error = core::convert::Infallible
  4218. pub fn aya::programs::kprobe::KProbeLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4219. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeLinkId where U: core::convert::TryFrom<T>
  4220. pub type aya::programs::kprobe::KProbeLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4221. pub fn aya::programs::kprobe::KProbeLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4222. impl<T> core::any::Any for aya::programs::kprobe::KProbeLinkId where T: 'static + ?core::marker::Sized
  4223. pub fn aya::programs::kprobe::KProbeLinkId::type_id(&self) -> core::any::TypeId
  4224. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeLinkId where T: ?core::marker::Sized
  4225. pub fn aya::programs::kprobe::KProbeLinkId::borrow(&self) -> &T
  4226. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeLinkId where T: ?core::marker::Sized
  4227. pub fn aya::programs::kprobe::KProbeLinkId::borrow_mut(&mut self) -> &mut T
  4228. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeLinkId
  4229. pub fn aya::programs::kprobe::KProbeLinkId::from(t: T) -> T
  4230. pub mod aya::programs::links
  4231. pub enum aya::programs::links::CgroupAttachMode
  4232. pub aya::programs::links::CgroupAttachMode::AllowMultiple
  4233. pub aya::programs::links::CgroupAttachMode::AllowOverride
  4234. pub aya::programs::links::CgroupAttachMode::Single
  4235. impl core::clone::Clone for aya::programs::links::CgroupAttachMode
  4236. pub fn aya::programs::links::CgroupAttachMode::clone(&self) -> aya::programs::links::CgroupAttachMode
  4237. impl core::convert::From<aya::programs::links::CgroupAttachMode> for u32
  4238. pub fn u32::from(mode: aya::programs::links::CgroupAttachMode) -> Self
  4239. impl core::default::Default for aya::programs::links::CgroupAttachMode
  4240. pub fn aya::programs::links::CgroupAttachMode::default() -> aya::programs::links::CgroupAttachMode
  4241. impl core::fmt::Debug for aya::programs::links::CgroupAttachMode
  4242. pub fn aya::programs::links::CgroupAttachMode::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4243. impl core::marker::Copy for aya::programs::links::CgroupAttachMode
  4244. impl core::marker::Freeze for aya::programs::links::CgroupAttachMode
  4245. impl core::marker::Send for aya::programs::links::CgroupAttachMode
  4246. impl core::marker::Sync for aya::programs::links::CgroupAttachMode
  4247. impl core::marker::Unpin for aya::programs::links::CgroupAttachMode
  4248. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::CgroupAttachMode
  4249. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::CgroupAttachMode
  4250. impl<T, U> core::convert::Into<U> for aya::programs::links::CgroupAttachMode where U: core::convert::From<T>
  4251. pub fn aya::programs::links::CgroupAttachMode::into(self) -> U
  4252. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::CgroupAttachMode where U: core::convert::Into<T>
  4253. pub type aya::programs::links::CgroupAttachMode::Error = core::convert::Infallible
  4254. pub fn aya::programs::links::CgroupAttachMode::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4255. impl<T, U> core::convert::TryInto<U> for aya::programs::links::CgroupAttachMode where U: core::convert::TryFrom<T>
  4256. pub type aya::programs::links::CgroupAttachMode::Error = <U as core::convert::TryFrom<T>>::Error
  4257. pub fn aya::programs::links::CgroupAttachMode::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4258. impl<T> alloc::borrow::ToOwned for aya::programs::links::CgroupAttachMode where T: core::clone::Clone
  4259. pub type aya::programs::links::CgroupAttachMode::Owned = T
  4260. pub fn aya::programs::links::CgroupAttachMode::clone_into(&self, target: &mut T)
  4261. pub fn aya::programs::links::CgroupAttachMode::to_owned(&self) -> T
  4262. impl<T> core::any::Any for aya::programs::links::CgroupAttachMode where T: 'static + ?core::marker::Sized
  4263. pub fn aya::programs::links::CgroupAttachMode::type_id(&self) -> core::any::TypeId
  4264. impl<T> core::borrow::Borrow<T> for aya::programs::links::CgroupAttachMode where T: ?core::marker::Sized
  4265. pub fn aya::programs::links::CgroupAttachMode::borrow(&self) -> &T
  4266. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::CgroupAttachMode where T: ?core::marker::Sized
  4267. pub fn aya::programs::links::CgroupAttachMode::borrow_mut(&mut self) -> &mut T
  4268. impl<T> core::clone::CloneToUninit for aya::programs::links::CgroupAttachMode where T: core::clone::Clone
  4269. pub unsafe fn aya::programs::links::CgroupAttachMode::clone_to_uninit(&self, dest: *mut u8)
  4270. impl<T> core::convert::From<T> for aya::programs::links::CgroupAttachMode
  4271. pub fn aya::programs::links::CgroupAttachMode::from(t: T) -> T
  4272. pub enum aya::programs::links::LinkError
  4273. pub aya::programs::links::LinkError::InvalidLink
  4274. pub aya::programs::links::LinkError::SyscallError(aya::sys::SyscallError)
  4275. pub aya::programs::links::LinkError::UnknownLinkType(u32)
  4276. impl core::convert::From<aya::sys::SyscallError> for aya::programs::links::LinkError
  4277. pub fn aya::programs::links::LinkError::from(source: aya::sys::SyscallError) -> Self
  4278. impl core::error::Error for aya::programs::links::LinkError
  4279. pub fn aya::programs::links::LinkError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  4280. impl core::fmt::Debug for aya::programs::links::LinkError
  4281. pub fn aya::programs::links::LinkError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4282. impl core::fmt::Display for aya::programs::links::LinkError
  4283. pub fn aya::programs::links::LinkError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4284. impl core::marker::Freeze for aya::programs::links::LinkError
  4285. impl core::marker::Send for aya::programs::links::LinkError
  4286. impl core::marker::Sync for aya::programs::links::LinkError
  4287. impl core::marker::Unpin for aya::programs::links::LinkError
  4288. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkError
  4289. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkError
  4290. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkError where U: core::convert::From<T>
  4291. pub fn aya::programs::links::LinkError::into(self) -> U
  4292. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkError where U: core::convert::Into<T>
  4293. pub type aya::programs::links::LinkError::Error = core::convert::Infallible
  4294. pub fn aya::programs::links::LinkError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4295. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkError where U: core::convert::TryFrom<T>
  4296. pub type aya::programs::links::LinkError::Error = <U as core::convert::TryFrom<T>>::Error
  4297. pub fn aya::programs::links::LinkError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4298. impl<T> alloc::string::ToString for aya::programs::links::LinkError where T: core::fmt::Display + ?core::marker::Sized
  4299. pub fn aya::programs::links::LinkError::to_string(&self) -> alloc::string::String
  4300. impl<T> core::any::Any for aya::programs::links::LinkError where T: 'static + ?core::marker::Sized
  4301. pub fn aya::programs::links::LinkError::type_id(&self) -> core::any::TypeId
  4302. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkError where T: ?core::marker::Sized
  4303. pub fn aya::programs::links::LinkError::borrow(&self) -> &T
  4304. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkError where T: ?core::marker::Sized
  4305. pub fn aya::programs::links::LinkError::borrow_mut(&mut self) -> &mut T
  4306. impl<T> core::convert::From<T> for aya::programs::links::LinkError
  4307. pub fn aya::programs::links::LinkError::from(t: T) -> T
  4308. #[non_exhaustive] pub enum aya::programs::links::LinkType
  4309. pub aya::programs::links::LinkType::Cgroup = 3
  4310. pub aya::programs::links::LinkType::Iter = 4
  4311. pub aya::programs::links::LinkType::KProbeMulti = 8
  4312. pub aya::programs::links::LinkType::Netfilter = 10
  4313. pub aya::programs::links::LinkType::Netkit = 13
  4314. pub aya::programs::links::LinkType::Netns = 5
  4315. pub aya::programs::links::LinkType::PerfEvent = 7
  4316. pub aya::programs::links::LinkType::RawTracePoint = 1
  4317. pub aya::programs::links::LinkType::StructOps = 9
  4318. pub aya::programs::links::LinkType::Tcx = 11
  4319. pub aya::programs::links::LinkType::Tracing = 2
  4320. pub aya::programs::links::LinkType::UProbeMulti = 12
  4321. pub aya::programs::links::LinkType::Unspecified = 0
  4322. pub aya::programs::links::LinkType::Xdp = 6
  4323. impl core::clone::Clone for aya::programs::links::LinkType
  4324. pub fn aya::programs::links::LinkType::clone(&self) -> aya::programs::links::LinkType
  4325. impl core::cmp::PartialEq for aya::programs::links::LinkType
  4326. pub fn aya::programs::links::LinkType::eq(&self, other: &aya::programs::links::LinkType) -> bool
  4327. impl core::convert::TryFrom<aya_obj::generated::linux_bindings_x86_64::bpf_link_type> for aya::programs::links::LinkType
  4328. pub type aya::programs::links::LinkType::Error = aya::programs::links::LinkError
  4329. pub fn aya::programs::links::LinkType::try_from(link_type: aya_obj::generated::linux_bindings_x86_64::bpf_link_type) -> core::result::Result<Self, Self::Error>
  4330. impl core::fmt::Debug for aya::programs::links::LinkType
  4331. pub fn aya::programs::links::LinkType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4332. impl core::marker::Copy for aya::programs::links::LinkType
  4333. impl core::marker::StructuralPartialEq for aya::programs::links::LinkType
  4334. impl core::marker::Freeze for aya::programs::links::LinkType
  4335. impl core::marker::Send for aya::programs::links::LinkType
  4336. impl core::marker::Sync for aya::programs::links::LinkType
  4337. impl core::marker::Unpin for aya::programs::links::LinkType
  4338. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkType
  4339. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkType
  4340. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkType where U: core::convert::From<T>
  4341. pub fn aya::programs::links::LinkType::into(self) -> U
  4342. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkType where U: core::convert::Into<T>
  4343. pub type aya::programs::links::LinkType::Error = core::convert::Infallible
  4344. pub fn aya::programs::links::LinkType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4345. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkType where U: core::convert::TryFrom<T>
  4346. pub type aya::programs::links::LinkType::Error = <U as core::convert::TryFrom<T>>::Error
  4347. pub fn aya::programs::links::LinkType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4348. impl<T> alloc::borrow::ToOwned for aya::programs::links::LinkType where T: core::clone::Clone
  4349. pub type aya::programs::links::LinkType::Owned = T
  4350. pub fn aya::programs::links::LinkType::clone_into(&self, target: &mut T)
  4351. pub fn aya::programs::links::LinkType::to_owned(&self) -> T
  4352. impl<T> core::any::Any for aya::programs::links::LinkType where T: 'static + ?core::marker::Sized
  4353. pub fn aya::programs::links::LinkType::type_id(&self) -> core::any::TypeId
  4354. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkType where T: ?core::marker::Sized
  4355. pub fn aya::programs::links::LinkType::borrow(&self) -> &T
  4356. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkType where T: ?core::marker::Sized
  4357. pub fn aya::programs::links::LinkType::borrow_mut(&mut self) -> &mut T
  4358. impl<T> core::clone::CloneToUninit for aya::programs::links::LinkType where T: core::clone::Clone
  4359. pub unsafe fn aya::programs::links::LinkType::clone_to_uninit(&self, dest: *mut u8)
  4360. impl<T> core::convert::From<T> for aya::programs::links::LinkType
  4361. pub fn aya::programs::links::LinkType::from(t: T) -> T
  4362. pub struct aya::programs::links::FdLink
  4363. impl aya::programs::links::FdLink
  4364. pub fn aya::programs::links::FdLink::info(&self) -> core::result::Result<aya::programs::links::LinkInfo, aya::programs::links::LinkError>
  4365. pub fn aya::programs::links::FdLink::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<aya::programs::links::PinnedLink, aya::pin::PinError>
  4366. impl aya::programs::links::Link for aya::programs::links::FdLink
  4367. pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId
  4368. pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4369. pub fn aya::programs::links::FdLink::id(&self) -> Self::Id
  4370. impl core::cmp::Eq for aya::programs::links::FdLink
  4371. impl core::cmp::PartialEq for aya::programs::links::FdLink
  4372. pub fn aya::programs::links::FdLink::eq(&self, other: &Self) -> bool
  4373. impl core::convert::From<aya::programs::extension::ExtensionLink> for aya::programs::links::FdLink
  4374. pub fn aya::programs::links::FdLink::from(w: aya::programs::extension::ExtensionLink) -> aya::programs::links::FdLink
  4375. impl core::convert::From<aya::programs::fentry::FEntryLink> for aya::programs::links::FdLink
  4376. pub fn aya::programs::links::FdLink::from(w: aya::programs::fentry::FEntryLink) -> aya::programs::links::FdLink
  4377. impl core::convert::From<aya::programs::fexit::FExitLink> for aya::programs::links::FdLink
  4378. pub fn aya::programs::links::FdLink::from(w: aya::programs::fexit::FExitLink) -> aya::programs::links::FdLink
  4379. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::extension::ExtensionLink
  4380. pub fn aya::programs::extension::ExtensionLink::from(b: aya::programs::links::FdLink) -> aya::programs::extension::ExtensionLink
  4381. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fentry::FEntryLink
  4382. pub fn aya::programs::fentry::FEntryLink::from(b: aya::programs::links::FdLink) -> aya::programs::fentry::FEntryLink
  4383. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fexit::FExitLink
  4384. pub fn aya::programs::fexit::FExitLink::from(b: aya::programs::links::FdLink) -> aya::programs::fexit::FExitLink
  4385. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::lsm::LsmLink
  4386. pub fn aya::programs::lsm::LsmLink::from(b: aya::programs::links::FdLink) -> aya::programs::lsm::LsmLink
  4387. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::raw_trace_point::RawTracePointLink
  4388. pub fn aya::programs::raw_trace_point::RawTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::raw_trace_point::RawTracePointLink
  4389. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::sk_lookup::SkLookupLink
  4390. pub fn aya::programs::sk_lookup::SkLookupLink::from(b: aya::programs::links::FdLink) -> aya::programs::sk_lookup::SkLookupLink
  4391. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::tp_btf::BtfTracePointLink
  4392. pub fn aya::programs::tp_btf::BtfTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::tp_btf::BtfTracePointLink
  4393. impl core::convert::From<aya::programs::links::PinnedLink> for aya::programs::links::FdLink
  4394. pub fn aya::programs::links::FdLink::from(p: aya::programs::links::PinnedLink) -> Self
  4395. impl core::convert::From<aya::programs::lsm::LsmLink> for aya::programs::links::FdLink
  4396. pub fn aya::programs::links::FdLink::from(w: aya::programs::lsm::LsmLink) -> aya::programs::links::FdLink
  4397. impl core::convert::From<aya::programs::raw_trace_point::RawTracePointLink> for aya::programs::links::FdLink
  4398. pub fn aya::programs::links::FdLink::from(w: aya::programs::raw_trace_point::RawTracePointLink) -> aya::programs::links::FdLink
  4399. impl core::convert::From<aya::programs::sk_lookup::SkLookupLink> for aya::programs::links::FdLink
  4400. pub fn aya::programs::links::FdLink::from(w: aya::programs::sk_lookup::SkLookupLink) -> aya::programs::links::FdLink
  4401. impl core::convert::From<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::links::FdLink
  4402. pub fn aya::programs::links::FdLink::from(w: aya::programs::tp_btf::BtfTracePointLink) -> aya::programs::links::FdLink
  4403. impl core::convert::TryFrom<aya::programs::iter::IterLink> for aya::programs::links::FdLink
  4404. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4405. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::iter::IterLink) -> core::result::Result<Self, Self::Error>
  4406. impl core::convert::TryFrom<aya::programs::kprobe::KProbeLink> for aya::programs::links::FdLink
  4407. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4408. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::kprobe::KProbeLink) -> core::result::Result<Self, Self::Error>
  4409. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::iter::IterLink
  4410. pub type aya::programs::iter::IterLink::Error = aya::programs::links::LinkError
  4411. pub fn aya::programs::iter::IterLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4412. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::kprobe::KProbeLink
  4413. pub type aya::programs::kprobe::KProbeLink::Error = aya::programs::links::LinkError
  4414. pub fn aya::programs::kprobe::KProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4415. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::perf_event::PerfEventLink
  4416. pub type aya::programs::perf_event::PerfEventLink::Error = aya::programs::links::LinkError
  4417. pub fn aya::programs::perf_event::PerfEventLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4418. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::tc::SchedClassifierLink
  4419. pub type aya::programs::tc::SchedClassifierLink::Error = aya::programs::links::LinkError
  4420. pub fn aya::programs::tc::SchedClassifierLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4421. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::trace_point::TracePointLink
  4422. pub type aya::programs::trace_point::TracePointLink::Error = aya::programs::links::LinkError
  4423. pub fn aya::programs::trace_point::TracePointLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4424. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::uprobe::UProbeLink
  4425. pub type aya::programs::uprobe::UProbeLink::Error = aya::programs::links::LinkError
  4426. pub fn aya::programs::uprobe::UProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4427. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::xdp::XdpLink
  4428. pub type aya::programs::xdp::XdpLink::Error = aya::programs::links::LinkError
  4429. pub fn aya::programs::xdp::XdpLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4430. impl core::convert::TryFrom<aya::programs::perf_event::PerfEventLink> for aya::programs::links::FdLink
  4431. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4432. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::perf_event::PerfEventLink) -> core::result::Result<Self, Self::Error>
  4433. impl core::convert::TryFrom<aya::programs::tc::SchedClassifierLink> for aya::programs::links::FdLink
  4434. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4435. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::tc::SchedClassifierLink) -> core::result::Result<Self, Self::Error>
  4436. impl core::convert::TryFrom<aya::programs::trace_point::TracePointLink> for aya::programs::links::FdLink
  4437. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4438. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::trace_point::TracePointLink) -> core::result::Result<Self, Self::Error>
  4439. impl core::convert::TryFrom<aya::programs::uprobe::UProbeLink> for aya::programs::links::FdLink
  4440. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4441. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::uprobe::UProbeLink) -> core::result::Result<Self, Self::Error>
  4442. impl core::convert::TryFrom<aya::programs::xdp::XdpLink> for aya::programs::links::FdLink
  4443. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4444. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::xdp::XdpLink) -> core::result::Result<Self, Self::Error>
  4445. impl core::fmt::Debug for aya::programs::links::FdLink
  4446. pub fn aya::programs::links::FdLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4447. impl core::hash::Hash for aya::programs::links::FdLink
  4448. pub fn aya::programs::links::FdLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  4449. impl equivalent::Equivalent<aya::programs::links::FdLink> for aya::programs::links::FdLinkId
  4450. pub fn aya::programs::links::FdLinkId::equivalent(&self, key: &aya::programs::links::FdLink) -> bool
  4451. impl<'a> core::convert::TryFrom<&'a aya::programs::tc::SchedClassifierLink> for &'a aya::programs::links::FdLink
  4452. pub type &'a aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4453. pub fn &'a aya::programs::links::FdLink::try_from(value: &'a aya::programs::tc::SchedClassifierLink) -> core::result::Result<Self, Self::Error>
  4454. impl core::marker::Freeze for aya::programs::links::FdLink
  4455. impl core::marker::Send for aya::programs::links::FdLink
  4456. impl core::marker::Sync for aya::programs::links::FdLink
  4457. impl core::marker::Unpin for aya::programs::links::FdLink
  4458. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::FdLink
  4459. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::FdLink
  4460. impl<Q, K> equivalent::Equivalent<K> for aya::programs::links::FdLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4461. pub fn aya::programs::links::FdLink::equivalent(&self, key: &K) -> bool
  4462. impl<T, U> core::convert::Into<U> for aya::programs::links::FdLink where U: core::convert::From<T>
  4463. pub fn aya::programs::links::FdLink::into(self) -> U
  4464. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::FdLink where U: core::convert::Into<T>
  4465. pub type aya::programs::links::FdLink::Error = core::convert::Infallible
  4466. pub fn aya::programs::links::FdLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4467. impl<T, U> core::convert::TryInto<U> for aya::programs::links::FdLink where U: core::convert::TryFrom<T>
  4468. pub type aya::programs::links::FdLink::Error = <U as core::convert::TryFrom<T>>::Error
  4469. pub fn aya::programs::links::FdLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4470. impl<T> core::any::Any for aya::programs::links::FdLink where T: 'static + ?core::marker::Sized
  4471. pub fn aya::programs::links::FdLink::type_id(&self) -> core::any::TypeId
  4472. impl<T> core::borrow::Borrow<T> for aya::programs::links::FdLink where T: ?core::marker::Sized
  4473. pub fn aya::programs::links::FdLink::borrow(&self) -> &T
  4474. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::FdLink where T: ?core::marker::Sized
  4475. pub fn aya::programs::links::FdLink::borrow_mut(&mut self) -> &mut T
  4476. impl<T> core::convert::From<T> for aya::programs::links::FdLink
  4477. pub fn aya::programs::links::FdLink::from(t: T) -> T
  4478. pub struct aya::programs::links::FdLinkId(_)
  4479. impl core::cmp::Eq for aya::programs::links::FdLinkId
  4480. impl core::cmp::PartialEq for aya::programs::links::FdLinkId
  4481. pub fn aya::programs::links::FdLinkId::eq(&self, other: &aya::programs::links::FdLinkId) -> bool
  4482. impl core::fmt::Debug for aya::programs::links::FdLinkId
  4483. pub fn aya::programs::links::FdLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4484. impl core::hash::Hash for aya::programs::links::FdLinkId
  4485. pub fn aya::programs::links::FdLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4486. impl core::marker::StructuralPartialEq for aya::programs::links::FdLinkId
  4487. impl equivalent::Equivalent<aya::programs::links::FdLink> for aya::programs::links::FdLinkId
  4488. pub fn aya::programs::links::FdLinkId::equivalent(&self, key: &aya::programs::links::FdLink) -> bool
  4489. impl core::marker::Freeze for aya::programs::links::FdLinkId
  4490. impl core::marker::Send for aya::programs::links::FdLinkId
  4491. impl core::marker::Sync for aya::programs::links::FdLinkId
  4492. impl core::marker::Unpin for aya::programs::links::FdLinkId
  4493. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::FdLinkId
  4494. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::FdLinkId
  4495. impl<Q, K> equivalent::Equivalent<K> for aya::programs::links::FdLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4496. pub fn aya::programs::links::FdLinkId::equivalent(&self, key: &K) -> bool
  4497. impl<T, U> core::convert::Into<U> for aya::programs::links::FdLinkId where U: core::convert::From<T>
  4498. pub fn aya::programs::links::FdLinkId::into(self) -> U
  4499. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::FdLinkId where U: core::convert::Into<T>
  4500. pub type aya::programs::links::FdLinkId::Error = core::convert::Infallible
  4501. pub fn aya::programs::links::FdLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4502. impl<T, U> core::convert::TryInto<U> for aya::programs::links::FdLinkId where U: core::convert::TryFrom<T>
  4503. pub type aya::programs::links::FdLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4504. pub fn aya::programs::links::FdLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4505. impl<T> core::any::Any for aya::programs::links::FdLinkId where T: 'static + ?core::marker::Sized
  4506. pub fn aya::programs::links::FdLinkId::type_id(&self) -> core::any::TypeId
  4507. impl<T> core::borrow::Borrow<T> for aya::programs::links::FdLinkId where T: ?core::marker::Sized
  4508. pub fn aya::programs::links::FdLinkId::borrow(&self) -> &T
  4509. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::FdLinkId where T: ?core::marker::Sized
  4510. pub fn aya::programs::links::FdLinkId::borrow_mut(&mut self) -> &mut T
  4511. impl<T> core::convert::From<T> for aya::programs::links::FdLinkId
  4512. pub fn aya::programs::links::FdLinkId::from(t: T) -> T
  4513. pub struct aya::programs::links::LinkInfo(_)
  4514. impl aya::programs::links::LinkInfo
  4515. pub fn aya::programs::links::LinkInfo::id(&self) -> u32
  4516. pub fn aya::programs::links::LinkInfo::link_type(&self) -> core::result::Result<aya::programs::links::LinkType, aya::programs::links::LinkError>
  4517. pub fn aya::programs::links::LinkInfo::program_id(&self) -> u32
  4518. impl core::marker::Freeze for aya::programs::links::LinkInfo
  4519. impl core::marker::Send for aya::programs::links::LinkInfo
  4520. impl core::marker::Sync for aya::programs::links::LinkInfo
  4521. impl core::marker::Unpin for aya::programs::links::LinkInfo
  4522. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkInfo
  4523. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkInfo
  4524. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkInfo where U: core::convert::From<T>
  4525. pub fn aya::programs::links::LinkInfo::into(self) -> U
  4526. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkInfo where U: core::convert::Into<T>
  4527. pub type aya::programs::links::LinkInfo::Error = core::convert::Infallible
  4528. pub fn aya::programs::links::LinkInfo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4529. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkInfo where U: core::convert::TryFrom<T>
  4530. pub type aya::programs::links::LinkInfo::Error = <U as core::convert::TryFrom<T>>::Error
  4531. pub fn aya::programs::links::LinkInfo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4532. impl<T> core::any::Any for aya::programs::links::LinkInfo where T: 'static + ?core::marker::Sized
  4533. pub fn aya::programs::links::LinkInfo::type_id(&self) -> core::any::TypeId
  4534. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkInfo where T: ?core::marker::Sized
  4535. pub fn aya::programs::links::LinkInfo::borrow(&self) -> &T
  4536. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkInfo where T: ?core::marker::Sized
  4537. pub fn aya::programs::links::LinkInfo::borrow_mut(&mut self) -> &mut T
  4538. impl<T> core::convert::From<T> for aya::programs::links::LinkInfo
  4539. pub fn aya::programs::links::LinkInfo::from(t: T) -> T
  4540. pub struct aya::programs::links::LinkOrder
  4541. impl aya::programs::links::LinkOrder
  4542. pub fn aya::programs::links::LinkOrder::after_link<L: aya::programs::MultiProgLink>(link: &L) -> core::result::Result<Self, aya::programs::links::LinkError>
  4543. pub fn aya::programs::links::LinkOrder::after_program<P: aya::programs::MultiProgram>(program: &P) -> core::result::Result<Self, aya::programs::ProgramError>
  4544. pub fn aya::programs::links::LinkOrder::after_program_id(id: aya::programs::ProgramId) -> Self
  4545. pub fn aya::programs::links::LinkOrder::before_link<L: aya::programs::MultiProgLink>(link: &L) -> core::result::Result<Self, aya::programs::links::LinkError>
  4546. pub fn aya::programs::links::LinkOrder::before_program<P: aya::programs::MultiProgram>(program: &P) -> core::result::Result<Self, aya::programs::ProgramError>
  4547. pub fn aya::programs::links::LinkOrder::before_program_id(id: aya::programs::ProgramId) -> Self
  4548. pub fn aya::programs::links::LinkOrder::first() -> Self
  4549. pub fn aya::programs::links::LinkOrder::last() -> Self
  4550. impl core::default::Default for aya::programs::links::LinkOrder
  4551. pub fn aya::programs::links::LinkOrder::default() -> Self
  4552. impl core::fmt::Debug for aya::programs::links::LinkOrder
  4553. pub fn aya::programs::links::LinkOrder::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4554. impl core::marker::Freeze for aya::programs::links::LinkOrder
  4555. impl core::marker::Send for aya::programs::links::LinkOrder
  4556. impl core::marker::Sync for aya::programs::links::LinkOrder
  4557. impl core::marker::Unpin for aya::programs::links::LinkOrder
  4558. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkOrder
  4559. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkOrder
  4560. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkOrder where U: core::convert::From<T>
  4561. pub fn aya::programs::links::LinkOrder::into(self) -> U
  4562. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkOrder where U: core::convert::Into<T>
  4563. pub type aya::programs::links::LinkOrder::Error = core::convert::Infallible
  4564. pub fn aya::programs::links::LinkOrder::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4565. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkOrder where U: core::convert::TryFrom<T>
  4566. pub type aya::programs::links::LinkOrder::Error = <U as core::convert::TryFrom<T>>::Error
  4567. pub fn aya::programs::links::LinkOrder::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4568. impl<T> core::any::Any for aya::programs::links::LinkOrder where T: 'static + ?core::marker::Sized
  4569. pub fn aya::programs::links::LinkOrder::type_id(&self) -> core::any::TypeId
  4570. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkOrder where T: ?core::marker::Sized
  4571. pub fn aya::programs::links::LinkOrder::borrow(&self) -> &T
  4572. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkOrder where T: ?core::marker::Sized
  4573. pub fn aya::programs::links::LinkOrder::borrow_mut(&mut self) -> &mut T
  4574. impl<T> core::convert::From<T> for aya::programs::links::LinkOrder
  4575. pub fn aya::programs::links::LinkOrder::from(t: T) -> T
  4576. pub struct aya::programs::links::PinnedLink
  4577. impl aya::programs::links::PinnedLink
  4578. pub fn aya::programs::links::PinnedLink::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::links::LinkError>
  4579. pub fn aya::programs::links::PinnedLink::unpin(self) -> core::result::Result<aya::programs::links::FdLink, std::io::error::Error>
  4580. impl core::convert::From<aya::programs::links::PinnedLink> for aya::programs::links::FdLink
  4581. pub fn aya::programs::links::FdLink::from(p: aya::programs::links::PinnedLink) -> Self
  4582. impl core::fmt::Debug for aya::programs::links::PinnedLink
  4583. pub fn aya::programs::links::PinnedLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4584. impl core::marker::Freeze for aya::programs::links::PinnedLink
  4585. impl core::marker::Send for aya::programs::links::PinnedLink
  4586. impl core::marker::Sync for aya::programs::links::PinnedLink
  4587. impl core::marker::Unpin for aya::programs::links::PinnedLink
  4588. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::PinnedLink
  4589. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::PinnedLink
  4590. impl<T, U> core::convert::Into<U> for aya::programs::links::PinnedLink where U: core::convert::From<T>
  4591. pub fn aya::programs::links::PinnedLink::into(self) -> U
  4592. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::PinnedLink where U: core::convert::Into<T>
  4593. pub type aya::programs::links::PinnedLink::Error = core::convert::Infallible
  4594. pub fn aya::programs::links::PinnedLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4595. impl<T, U> core::convert::TryInto<U> for aya::programs::links::PinnedLink where U: core::convert::TryFrom<T>
  4596. pub type aya::programs::links::PinnedLink::Error = <U as core::convert::TryFrom<T>>::Error
  4597. pub fn aya::programs::links::PinnedLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4598. impl<T> core::any::Any for aya::programs::links::PinnedLink where T: 'static + ?core::marker::Sized
  4599. pub fn aya::programs::links::PinnedLink::type_id(&self) -> core::any::TypeId
  4600. impl<T> core::borrow::Borrow<T> for aya::programs::links::PinnedLink where T: ?core::marker::Sized
  4601. pub fn aya::programs::links::PinnedLink::borrow(&self) -> &T
  4602. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::PinnedLink where T: ?core::marker::Sized
  4603. pub fn aya::programs::links::PinnedLink::borrow_mut(&mut self) -> &mut T
  4604. impl<T> core::convert::From<T> for aya::programs::links::PinnedLink
  4605. pub fn aya::programs::links::PinnedLink::from(t: T) -> T
  4606. pub struct aya::programs::links::ProgAttachLink
  4607. impl aya::programs::links::Link for aya::programs::links::ProgAttachLink
  4608. pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId
  4609. pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4610. pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id
  4611. impl core::cmp::Eq for aya::programs::links::ProgAttachLink
  4612. impl core::cmp::PartialEq for aya::programs::links::ProgAttachLink
  4613. pub fn aya::programs::links::ProgAttachLink::eq(&self, other: &Self) -> bool
  4614. impl core::convert::From<aya::programs::links::ProgAttachLink> for aya::programs::sk_msg::SkMsgLink
  4615. pub fn aya::programs::sk_msg::SkMsgLink::from(b: aya::programs::links::ProgAttachLink) -> aya::programs::sk_msg::SkMsgLink
  4616. impl core::convert::From<aya::programs::links::ProgAttachLink> for aya::programs::sk_skb::SkSkbLink
  4617. pub fn aya::programs::sk_skb::SkSkbLink::from(b: aya::programs::links::ProgAttachLink) -> aya::programs::sk_skb::SkSkbLink
  4618. impl core::convert::From<aya::programs::sk_msg::SkMsgLink> for aya::programs::links::ProgAttachLink
  4619. pub fn aya::programs::links::ProgAttachLink::from(w: aya::programs::sk_msg::SkMsgLink) -> aya::programs::links::ProgAttachLink
  4620. impl core::convert::From<aya::programs::sk_skb::SkSkbLink> for aya::programs::links::ProgAttachLink
  4621. pub fn aya::programs::links::ProgAttachLink::from(w: aya::programs::sk_skb::SkSkbLink) -> aya::programs::links::ProgAttachLink
  4622. impl core::fmt::Debug for aya::programs::links::ProgAttachLink
  4623. pub fn aya::programs::links::ProgAttachLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4624. impl core::hash::Hash for aya::programs::links::ProgAttachLink
  4625. pub fn aya::programs::links::ProgAttachLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  4626. impl equivalent::Equivalent<aya::programs::links::ProgAttachLink> for aya::programs::links::ProgAttachLinkId
  4627. pub fn aya::programs::links::ProgAttachLinkId::equivalent(&self, key: &aya::programs::links::ProgAttachLink) -> bool
  4628. impl core::marker::Freeze for aya::programs::links::ProgAttachLink
  4629. impl core::marker::Send for aya::programs::links::ProgAttachLink
  4630. impl core::marker::Sync for aya::programs::links::ProgAttachLink
  4631. impl core::marker::Unpin for aya::programs::links::ProgAttachLink
  4632. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::ProgAttachLink
  4633. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::ProgAttachLink
  4634. impl<Q, K> equivalent::Equivalent<K> for aya::programs::links::ProgAttachLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4635. pub fn aya::programs::links::ProgAttachLink::equivalent(&self, key: &K) -> bool
  4636. impl<T, U> core::convert::Into<U> for aya::programs::links::ProgAttachLink where U: core::convert::From<T>
  4637. pub fn aya::programs::links::ProgAttachLink::into(self) -> U
  4638. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::ProgAttachLink where U: core::convert::Into<T>
  4639. pub type aya::programs::links::ProgAttachLink::Error = core::convert::Infallible
  4640. pub fn aya::programs::links::ProgAttachLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4641. impl<T, U> core::convert::TryInto<U> for aya::programs::links::ProgAttachLink where U: core::convert::TryFrom<T>
  4642. pub type aya::programs::links::ProgAttachLink::Error = <U as core::convert::TryFrom<T>>::Error
  4643. pub fn aya::programs::links::ProgAttachLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4644. impl<T> core::any::Any for aya::programs::links::ProgAttachLink where T: 'static + ?core::marker::Sized
  4645. pub fn aya::programs::links::ProgAttachLink::type_id(&self) -> core::any::TypeId
  4646. impl<T> core::borrow::Borrow<T> for aya::programs::links::ProgAttachLink where T: ?core::marker::Sized
  4647. pub fn aya::programs::links::ProgAttachLink::borrow(&self) -> &T
  4648. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::ProgAttachLink where T: ?core::marker::Sized
  4649. pub fn aya::programs::links::ProgAttachLink::borrow_mut(&mut self) -> &mut T
  4650. impl<T> core::convert::From<T> for aya::programs::links::ProgAttachLink
  4651. pub fn aya::programs::links::ProgAttachLink::from(t: T) -> T
  4652. pub struct aya::programs::links::ProgAttachLinkId(_, _, _)
  4653. impl core::cmp::Eq for aya::programs::links::ProgAttachLinkId
  4654. impl core::cmp::PartialEq for aya::programs::links::ProgAttachLinkId
  4655. pub fn aya::programs::links::ProgAttachLinkId::eq(&self, other: &aya::programs::links::ProgAttachLinkId) -> bool
  4656. impl core::fmt::Debug for aya::programs::links::ProgAttachLinkId
  4657. pub fn aya::programs::links::ProgAttachLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4658. impl core::hash::Hash for aya::programs::links::ProgAttachLinkId
  4659. pub fn aya::programs::links::ProgAttachLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4660. impl core::marker::StructuralPartialEq for aya::programs::links::ProgAttachLinkId
  4661. impl equivalent::Equivalent<aya::programs::links::ProgAttachLink> for aya::programs::links::ProgAttachLinkId
  4662. pub fn aya::programs::links::ProgAttachLinkId::equivalent(&self, key: &aya::programs::links::ProgAttachLink) -> bool
  4663. impl core::marker::Freeze for aya::programs::links::ProgAttachLinkId
  4664. impl core::marker::Send for aya::programs::links::ProgAttachLinkId
  4665. impl core::marker::Sync for aya::programs::links::ProgAttachLinkId
  4666. impl core::marker::Unpin for aya::programs::links::ProgAttachLinkId
  4667. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::ProgAttachLinkId
  4668. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::ProgAttachLinkId
  4669. impl<Q, K> equivalent::Equivalent<K> for aya::programs::links::ProgAttachLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4670. pub fn aya::programs::links::ProgAttachLinkId::equivalent(&self, key: &K) -> bool
  4671. impl<T, U> core::convert::Into<U> for aya::programs::links::ProgAttachLinkId where U: core::convert::From<T>
  4672. pub fn aya::programs::links::ProgAttachLinkId::into(self) -> U
  4673. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::ProgAttachLinkId where U: core::convert::Into<T>
  4674. pub type aya::programs::links::ProgAttachLinkId::Error = core::convert::Infallible
  4675. pub fn aya::programs::links::ProgAttachLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4676. impl<T, U> core::convert::TryInto<U> for aya::programs::links::ProgAttachLinkId where U: core::convert::TryFrom<T>
  4677. pub type aya::programs::links::ProgAttachLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4678. pub fn aya::programs::links::ProgAttachLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4679. impl<T> core::any::Any for aya::programs::links::ProgAttachLinkId where T: 'static + ?core::marker::Sized
  4680. pub fn aya::programs::links::ProgAttachLinkId::type_id(&self) -> core::any::TypeId
  4681. impl<T> core::borrow::Borrow<T> for aya::programs::links::ProgAttachLinkId where T: ?core::marker::Sized
  4682. pub fn aya::programs::links::ProgAttachLinkId::borrow(&self) -> &T
  4683. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::ProgAttachLinkId where T: ?core::marker::Sized
  4684. pub fn aya::programs::links::ProgAttachLinkId::borrow_mut(&mut self) -> &mut T
  4685. impl<T> core::convert::From<T> for aya::programs::links::ProgAttachLinkId
  4686. pub fn aya::programs::links::ProgAttachLinkId::from(t: T) -> T
  4687. pub trait aya::programs::links::Link: core::fmt::Debug + core::cmp::Eq + core::hash::Hash + 'static
  4688. pub type aya::programs::links::Link::Id: core::fmt::Debug + core::cmp::Eq + core::hash::Hash + equivalent::Equivalent<Self>
  4689. pub fn aya::programs::links::Link::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4690. pub fn aya::programs::links::Link::id(&self) -> Self::Id
  4691. impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink
  4692. pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId
  4693. pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4694. pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id
  4695. impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink
  4696. pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId
  4697. pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4698. pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id
  4699. impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink
  4700. pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId
  4701. pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4702. pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id
  4703. impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  4704. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  4705. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4706. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id
  4707. impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink
  4708. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  4709. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4710. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id
  4711. impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink
  4712. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  4713. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4714. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id
  4715. impl aya::programs::links::Link for aya::programs::extension::ExtensionLink
  4716. pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId
  4717. pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4718. pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id
  4719. impl aya::programs::links::Link for aya::programs::fentry::FEntryLink
  4720. pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId
  4721. pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4722. pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id
  4723. impl aya::programs::links::Link for aya::programs::fexit::FExitLink
  4724. pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId
  4725. pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4726. pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id
  4727. impl aya::programs::links::Link for aya::programs::flow_dissector::FlowDissectorLink
  4728. pub type aya::programs::flow_dissector::FlowDissectorLink::Id = aya::programs::flow_dissector::FlowDissectorLinkId
  4729. pub fn aya::programs::flow_dissector::FlowDissectorLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4730. pub fn aya::programs::flow_dissector::FlowDissectorLink::id(&self) -> Self::Id
  4731. impl aya::programs::links::Link for aya::programs::iter::IterLink
  4732. pub type aya::programs::iter::IterLink::Id = aya::programs::iter::IterLinkId
  4733. pub fn aya::programs::iter::IterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4734. pub fn aya::programs::iter::IterLink::id(&self) -> Self::Id
  4735. impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink
  4736. pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId
  4737. pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4738. pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id
  4739. impl aya::programs::links::Link for aya::programs::links::FdLink
  4740. pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId
  4741. pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4742. pub fn aya::programs::links::FdLink::id(&self) -> Self::Id
  4743. impl aya::programs::links::Link for aya::programs::links::ProgAttachLink
  4744. pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId
  4745. pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4746. pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id
  4747. impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink
  4748. pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId
  4749. pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4750. pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id
  4751. impl aya::programs::links::Link for aya::programs::lsm::LsmLink
  4752. pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId
  4753. pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4754. pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id
  4755. impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink
  4756. pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId
  4757. pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4758. pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id
  4759. impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink
  4760. pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId
  4761. pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4762. pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id
  4763. impl aya::programs::links::Link for aya::programs::raw_trace_point::RawTracePointLink
  4764. pub type aya::programs::raw_trace_point::RawTracePointLink::Id = aya::programs::raw_trace_point::RawTracePointLinkId
  4765. pub fn aya::programs::raw_trace_point::RawTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4766. pub fn aya::programs::raw_trace_point::RawTracePointLink::id(&self) -> Self::Id
  4767. impl aya::programs::links::Link for aya::programs::sk_lookup::SkLookupLink
  4768. pub type aya::programs::sk_lookup::SkLookupLink::Id = aya::programs::sk_lookup::SkLookupLinkId
  4769. pub fn aya::programs::sk_lookup::SkLookupLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4770. pub fn aya::programs::sk_lookup::SkLookupLink::id(&self) -> Self::Id
  4771. impl aya::programs::links::Link for aya::programs::sk_msg::SkMsgLink
  4772. pub type aya::programs::sk_msg::SkMsgLink::Id = aya::programs::sk_msg::SkMsgLinkId
  4773. pub fn aya::programs::sk_msg::SkMsgLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4774. pub fn aya::programs::sk_msg::SkMsgLink::id(&self) -> Self::Id
  4775. impl aya::programs::links::Link for aya::programs::sk_skb::SkSkbLink
  4776. pub type aya::programs::sk_skb::SkSkbLink::Id = aya::programs::sk_skb::SkSkbLinkId
  4777. pub fn aya::programs::sk_skb::SkSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4778. pub fn aya::programs::sk_skb::SkSkbLink::id(&self) -> Self::Id
  4779. impl aya::programs::links::Link for aya::programs::sock_ops::SockOpsLink
  4780. pub type aya::programs::sock_ops::SockOpsLink::Id = aya::programs::sock_ops::SockOpsLinkId
  4781. pub fn aya::programs::sock_ops::SockOpsLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4782. pub fn aya::programs::sock_ops::SockOpsLink::id(&self) -> Self::Id
  4783. impl aya::programs::links::Link for aya::programs::socket_filter::SocketFilterLink
  4784. pub type aya::programs::socket_filter::SocketFilterLink::Id = aya::programs::socket_filter::SocketFilterLinkId
  4785. pub fn aya::programs::socket_filter::SocketFilterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4786. pub fn aya::programs::socket_filter::SocketFilterLink::id(&self) -> Self::Id
  4787. impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink
  4788. pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId
  4789. pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4790. pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id
  4791. impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink
  4792. pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId
  4793. pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4794. pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id
  4795. impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink
  4796. pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId
  4797. pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4798. pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id
  4799. impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink
  4800. pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId
  4801. pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4802. pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id
  4803. impl aya::programs::links::Link for aya::programs::xdp::XdpLink
  4804. pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId
  4805. pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4806. pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id
  4807. pub mod aya::programs::lirc_mode2
  4808. pub struct aya::programs::lirc_mode2::LircLink
  4809. impl aya::programs::lirc_mode2::LircLink
  4810. pub fn aya::programs::lirc_mode2::LircLink::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4811. impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink
  4812. pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId
  4813. pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4814. pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id
  4815. impl core::cmp::Eq for aya::programs::lirc_mode2::LircLink
  4816. impl core::cmp::PartialEq for aya::programs::lirc_mode2::LircLink
  4817. pub fn aya::programs::lirc_mode2::LircLink::eq(&self, other: &Self) -> bool
  4818. impl core::fmt::Debug for aya::programs::lirc_mode2::LircLink
  4819. pub fn aya::programs::lirc_mode2::LircLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4820. impl core::hash::Hash for aya::programs::lirc_mode2::LircLink
  4821. pub fn aya::programs::lirc_mode2::LircLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  4822. impl equivalent::Equivalent<aya::programs::lirc_mode2::LircLink> for aya::programs::lirc_mode2::LircLinkId
  4823. pub fn aya::programs::lirc_mode2::LircLinkId::equivalent(&self, key: &aya::programs::lirc_mode2::LircLink) -> bool
  4824. impl core::marker::Freeze for aya::programs::lirc_mode2::LircLink
  4825. impl core::marker::Send for aya::programs::lirc_mode2::LircLink
  4826. impl core::marker::Sync for aya::programs::lirc_mode2::LircLink
  4827. impl core::marker::Unpin for aya::programs::lirc_mode2::LircLink
  4828. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircLink
  4829. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircLink
  4830. impl<Q, K> equivalent::Equivalent<K> for aya::programs::lirc_mode2::LircLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4831. pub fn aya::programs::lirc_mode2::LircLink::equivalent(&self, key: &K) -> bool
  4832. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircLink where U: core::convert::From<T>
  4833. pub fn aya::programs::lirc_mode2::LircLink::into(self) -> U
  4834. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircLink where U: core::convert::Into<T>
  4835. pub type aya::programs::lirc_mode2::LircLink::Error = core::convert::Infallible
  4836. pub fn aya::programs::lirc_mode2::LircLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4837. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircLink where U: core::convert::TryFrom<T>
  4838. pub type aya::programs::lirc_mode2::LircLink::Error = <U as core::convert::TryFrom<T>>::Error
  4839. pub fn aya::programs::lirc_mode2::LircLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4840. impl<T> core::any::Any for aya::programs::lirc_mode2::LircLink where T: 'static + ?core::marker::Sized
  4841. pub fn aya::programs::lirc_mode2::LircLink::type_id(&self) -> core::any::TypeId
  4842. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircLink where T: ?core::marker::Sized
  4843. pub fn aya::programs::lirc_mode2::LircLink::borrow(&self) -> &T
  4844. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircLink where T: ?core::marker::Sized
  4845. pub fn aya::programs::lirc_mode2::LircLink::borrow_mut(&mut self) -> &mut T
  4846. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircLink
  4847. pub fn aya::programs::lirc_mode2::LircLink::from(t: T) -> T
  4848. pub struct aya::programs::lirc_mode2::LircLinkId(_, _)
  4849. impl core::cmp::Eq for aya::programs::lirc_mode2::LircLinkId
  4850. impl core::cmp::PartialEq for aya::programs::lirc_mode2::LircLinkId
  4851. pub fn aya::programs::lirc_mode2::LircLinkId::eq(&self, other: &aya::programs::lirc_mode2::LircLinkId) -> bool
  4852. impl core::fmt::Debug for aya::programs::lirc_mode2::LircLinkId
  4853. pub fn aya::programs::lirc_mode2::LircLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4854. impl core::hash::Hash for aya::programs::lirc_mode2::LircLinkId
  4855. pub fn aya::programs::lirc_mode2::LircLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4856. impl core::marker::StructuralPartialEq for aya::programs::lirc_mode2::LircLinkId
  4857. impl equivalent::Equivalent<aya::programs::lirc_mode2::LircLink> for aya::programs::lirc_mode2::LircLinkId
  4858. pub fn aya::programs::lirc_mode2::LircLinkId::equivalent(&self, key: &aya::programs::lirc_mode2::LircLink) -> bool
  4859. impl core::marker::Freeze for aya::programs::lirc_mode2::LircLinkId
  4860. impl core::marker::Send for aya::programs::lirc_mode2::LircLinkId
  4861. impl core::marker::Sync for aya::programs::lirc_mode2::LircLinkId
  4862. impl core::marker::Unpin for aya::programs::lirc_mode2::LircLinkId
  4863. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircLinkId
  4864. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircLinkId
  4865. impl<Q, K> equivalent::Equivalent<K> for aya::programs::lirc_mode2::LircLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4866. pub fn aya::programs::lirc_mode2::LircLinkId::equivalent(&self, key: &K) -> bool
  4867. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircLinkId where U: core::convert::From<T>
  4868. pub fn aya::programs::lirc_mode2::LircLinkId::into(self) -> U
  4869. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircLinkId where U: core::convert::Into<T>
  4870. pub type aya::programs::lirc_mode2::LircLinkId::Error = core::convert::Infallible
  4871. pub fn aya::programs::lirc_mode2::LircLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4872. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircLinkId where U: core::convert::TryFrom<T>
  4873. pub type aya::programs::lirc_mode2::LircLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4874. pub fn aya::programs::lirc_mode2::LircLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4875. impl<T> core::any::Any for aya::programs::lirc_mode2::LircLinkId where T: 'static + ?core::marker::Sized
  4876. pub fn aya::programs::lirc_mode2::LircLinkId::type_id(&self) -> core::any::TypeId
  4877. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircLinkId where T: ?core::marker::Sized
  4878. pub fn aya::programs::lirc_mode2::LircLinkId::borrow(&self) -> &T
  4879. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircLinkId where T: ?core::marker::Sized
  4880. pub fn aya::programs::lirc_mode2::LircLinkId::borrow_mut(&mut self) -> &mut T
  4881. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircLinkId
  4882. pub fn aya::programs::lirc_mode2::LircLinkId::from(t: T) -> T
  4883. pub struct aya::programs::lirc_mode2::LircMode2
  4884. impl aya::programs::lirc_mode2::LircMode2
  4885. pub const aya::programs::lirc_mode2::LircMode2::PROGRAM_TYPE: aya::programs::ProgramType
  4886. pub fn aya::programs::lirc_mode2::LircMode2::attach<T: std::os::fd::owned::AsFd>(&mut self, lircdev: T) -> core::result::Result<aya::programs::lirc_mode2::LircLinkId, aya::programs::ProgramError>
  4887. pub fn aya::programs::lirc_mode2::LircMode2::detach(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4888. pub fn aya::programs::lirc_mode2::LircMode2::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4889. pub fn aya::programs::lirc_mode2::LircMode2::query<T: std::os::fd::owned::AsFd>(target_fd: T) -> core::result::Result<alloc::vec::Vec<aya::programs::lirc_mode2::LircLink>, aya::programs::ProgramError>
  4890. pub fn aya::programs::lirc_mode2::LircMode2::take_link(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<aya::programs::lirc_mode2::LircLink, aya::programs::ProgramError>
  4891. impl aya::programs::lirc_mode2::LircMode2
  4892. pub fn aya::programs::lirc_mode2::LircMode2::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4893. impl aya::programs::lirc_mode2::LircMode2
  4894. pub fn aya::programs::lirc_mode2::LircMode2::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  4895. impl aya::programs::lirc_mode2::LircMode2
  4896. pub fn aya::programs::lirc_mode2::LircMode2::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  4897. impl aya::programs::lirc_mode2::LircMode2
  4898. pub fn aya::programs::lirc_mode2::LircMode2::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4899. impl aya::programs::lirc_mode2::LircMode2
  4900. pub fn aya::programs::lirc_mode2::LircMode2::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4901. pub fn aya::programs::lirc_mode2::LircMode2::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4902. impl aya::programs::lirc_mode2::LircMode2
  4903. pub fn aya::programs::lirc_mode2::LircMode2::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4904. impl core::fmt::Debug for aya::programs::lirc_mode2::LircMode2
  4905. pub fn aya::programs::lirc_mode2::LircMode2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4906. impl core::ops::drop::Drop for aya::programs::lirc_mode2::LircMode2
  4907. pub fn aya::programs::lirc_mode2::LircMode2::drop(&mut self)
  4908. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2
  4909. pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  4910. pub fn &'a aya::programs::lirc_mode2::LircMode2::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  4911. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2
  4912. pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  4913. pub fn &'a mut aya::programs::lirc_mode2::LircMode2::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  4914. impl core::marker::Freeze for aya::programs::lirc_mode2::LircMode2
  4915. impl core::marker::Send for aya::programs::lirc_mode2::LircMode2
  4916. impl core::marker::Sync for aya::programs::lirc_mode2::LircMode2
  4917. impl core::marker::Unpin for aya::programs::lirc_mode2::LircMode2
  4918. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircMode2
  4919. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircMode2
  4920. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::From<T>
  4921. pub fn aya::programs::lirc_mode2::LircMode2::into(self) -> U
  4922. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::Into<T>
  4923. pub type aya::programs::lirc_mode2::LircMode2::Error = core::convert::Infallible
  4924. pub fn aya::programs::lirc_mode2::LircMode2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4925. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::TryFrom<T>
  4926. pub type aya::programs::lirc_mode2::LircMode2::Error = <U as core::convert::TryFrom<T>>::Error
  4927. pub fn aya::programs::lirc_mode2::LircMode2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4928. impl<T> core::any::Any for aya::programs::lirc_mode2::LircMode2 where T: 'static + ?core::marker::Sized
  4929. pub fn aya::programs::lirc_mode2::LircMode2::type_id(&self) -> core::any::TypeId
  4930. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircMode2 where T: ?core::marker::Sized
  4931. pub fn aya::programs::lirc_mode2::LircMode2::borrow(&self) -> &T
  4932. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircMode2 where T: ?core::marker::Sized
  4933. pub fn aya::programs::lirc_mode2::LircMode2::borrow_mut(&mut self) -> &mut T
  4934. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircMode2
  4935. pub fn aya::programs::lirc_mode2::LircMode2::from(t: T) -> T
  4936. pub mod aya::programs::lsm
  4937. pub struct aya::programs::lsm::Lsm
  4938. impl aya::programs::lsm::Lsm
  4939. pub const aya::programs::lsm::Lsm::PROGRAM_TYPE: aya::programs::ProgramType
  4940. pub fn aya::programs::lsm::Lsm::attach(&mut self) -> core::result::Result<aya::programs::lsm::LsmLinkId, aya::programs::ProgramError>
  4941. pub fn aya::programs::lsm::Lsm::load(&mut self, lsm_hook_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  4942. impl aya::programs::lsm::Lsm
  4943. pub fn aya::programs::lsm::Lsm::detach(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4944. pub fn aya::programs::lsm::Lsm::take_link(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<aya::programs::lsm::LsmLink, aya::programs::ProgramError>
  4945. impl aya::programs::lsm::Lsm
  4946. pub fn aya::programs::lsm::Lsm::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4947. impl aya::programs::lsm::Lsm
  4948. pub fn aya::programs::lsm::Lsm::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  4949. impl aya::programs::lsm::Lsm
  4950. pub fn aya::programs::lsm::Lsm::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  4951. impl aya::programs::lsm::Lsm
  4952. pub fn aya::programs::lsm::Lsm::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4953. impl aya::programs::lsm::Lsm
  4954. pub fn aya::programs::lsm::Lsm::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4955. pub fn aya::programs::lsm::Lsm::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4956. impl aya::programs::lsm::Lsm
  4957. pub fn aya::programs::lsm::Lsm::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4958. impl core::fmt::Debug for aya::programs::lsm::Lsm
  4959. pub fn aya::programs::lsm::Lsm::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4960. impl core::ops::drop::Drop for aya::programs::lsm::Lsm
  4961. pub fn aya::programs::lsm::Lsm::drop(&mut self)
  4962. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm
  4963. pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  4964. pub fn &'a aya::programs::lsm::Lsm::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lsm::Lsm, aya::programs::ProgramError>
  4965. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm
  4966. pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  4967. pub fn &'a mut aya::programs::lsm::Lsm::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lsm::Lsm, aya::programs::ProgramError>
  4968. impl core::marker::Freeze for aya::programs::lsm::Lsm
  4969. impl core::marker::Send for aya::programs::lsm::Lsm
  4970. impl core::marker::Sync for aya::programs::lsm::Lsm
  4971. impl core::marker::Unpin for aya::programs::lsm::Lsm
  4972. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::Lsm
  4973. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::Lsm
  4974. impl<T, U> core::convert::Into<U> for aya::programs::lsm::Lsm where U: core::convert::From<T>
  4975. pub fn aya::programs::lsm::Lsm::into(self) -> U
  4976. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::Lsm where U: core::convert::Into<T>
  4977. pub type aya::programs::lsm::Lsm::Error = core::convert::Infallible
  4978. pub fn aya::programs::lsm::Lsm::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4979. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::Lsm where U: core::convert::TryFrom<T>
  4980. pub type aya::programs::lsm::Lsm::Error = <U as core::convert::TryFrom<T>>::Error
  4981. pub fn aya::programs::lsm::Lsm::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4982. impl<T> core::any::Any for aya::programs::lsm::Lsm where T: 'static + ?core::marker::Sized
  4983. pub fn aya::programs::lsm::Lsm::type_id(&self) -> core::any::TypeId
  4984. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::Lsm where T: ?core::marker::Sized
  4985. pub fn aya::programs::lsm::Lsm::borrow(&self) -> &T
  4986. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::Lsm where T: ?core::marker::Sized
  4987. pub fn aya::programs::lsm::Lsm::borrow_mut(&mut self) -> &mut T
  4988. impl<T> core::convert::From<T> for aya::programs::lsm::Lsm
  4989. pub fn aya::programs::lsm::Lsm::from(t: T) -> T
  4990. pub struct aya::programs::lsm::LsmLink(_)
  4991. impl aya::programs::links::Link for aya::programs::lsm::LsmLink
  4992. pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId
  4993. pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4994. pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id
  4995. impl core::cmp::Eq for aya::programs::lsm::LsmLink
  4996. impl core::cmp::PartialEq for aya::programs::lsm::LsmLink
  4997. pub fn aya::programs::lsm::LsmLink::eq(&self, other: &Self) -> bool
  4998. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::lsm::LsmLink
  4999. pub fn aya::programs::lsm::LsmLink::from(b: aya::programs::links::FdLink) -> aya::programs::lsm::LsmLink
  5000. impl core::convert::From<aya::programs::lsm::LsmLink> for aya::programs::links::FdLink
  5001. pub fn aya::programs::links::FdLink::from(w: aya::programs::lsm::LsmLink) -> aya::programs::links::FdLink
  5002. impl core::fmt::Debug for aya::programs::lsm::LsmLink
  5003. pub fn aya::programs::lsm::LsmLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5004. impl core::hash::Hash for aya::programs::lsm::LsmLink
  5005. pub fn aya::programs::lsm::LsmLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5006. impl core::ops::drop::Drop for aya::programs::lsm::LsmLink
  5007. pub fn aya::programs::lsm::LsmLink::drop(&mut self)
  5008. impl equivalent::Equivalent<aya::programs::lsm::LsmLink> for aya::programs::lsm::LsmLinkId
  5009. pub fn aya::programs::lsm::LsmLinkId::equivalent(&self, key: &aya::programs::lsm::LsmLink) -> bool
  5010. impl core::marker::Freeze for aya::programs::lsm::LsmLink
  5011. impl core::marker::Send for aya::programs::lsm::LsmLink
  5012. impl core::marker::Sync for aya::programs::lsm::LsmLink
  5013. impl core::marker::Unpin for aya::programs::lsm::LsmLink
  5014. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::LsmLink
  5015. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::LsmLink
  5016. impl<Q, K> equivalent::Equivalent<K> for aya::programs::lsm::LsmLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5017. pub fn aya::programs::lsm::LsmLink::equivalent(&self, key: &K) -> bool
  5018. impl<T, U> core::convert::Into<U> for aya::programs::lsm::LsmLink where U: core::convert::From<T>
  5019. pub fn aya::programs::lsm::LsmLink::into(self) -> U
  5020. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::LsmLink where U: core::convert::Into<T>
  5021. pub type aya::programs::lsm::LsmLink::Error = core::convert::Infallible
  5022. pub fn aya::programs::lsm::LsmLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5023. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::LsmLink where U: core::convert::TryFrom<T>
  5024. pub type aya::programs::lsm::LsmLink::Error = <U as core::convert::TryFrom<T>>::Error
  5025. pub fn aya::programs::lsm::LsmLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5026. impl<T> core::any::Any for aya::programs::lsm::LsmLink where T: 'static + ?core::marker::Sized
  5027. pub fn aya::programs::lsm::LsmLink::type_id(&self) -> core::any::TypeId
  5028. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::LsmLink where T: ?core::marker::Sized
  5029. pub fn aya::programs::lsm::LsmLink::borrow(&self) -> &T
  5030. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::LsmLink where T: ?core::marker::Sized
  5031. pub fn aya::programs::lsm::LsmLink::borrow_mut(&mut self) -> &mut T
  5032. impl<T> core::convert::From<T> for aya::programs::lsm::LsmLink
  5033. pub fn aya::programs::lsm::LsmLink::from(t: T) -> T
  5034. pub struct aya::programs::lsm::LsmLinkId(_)
  5035. impl core::cmp::Eq for aya::programs::lsm::LsmLinkId
  5036. impl core::cmp::PartialEq for aya::programs::lsm::LsmLinkId
  5037. pub fn aya::programs::lsm::LsmLinkId::eq(&self, other: &aya::programs::lsm::LsmLinkId) -> bool
  5038. impl core::fmt::Debug for aya::programs::lsm::LsmLinkId
  5039. pub fn aya::programs::lsm::LsmLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5040. impl core::hash::Hash for aya::programs::lsm::LsmLinkId
  5041. pub fn aya::programs::lsm::LsmLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5042. impl core::marker::StructuralPartialEq for aya::programs::lsm::LsmLinkId
  5043. impl equivalent::Equivalent<aya::programs::lsm::LsmLink> for aya::programs::lsm::LsmLinkId
  5044. pub fn aya::programs::lsm::LsmLinkId::equivalent(&self, key: &aya::programs::lsm::LsmLink) -> bool
  5045. impl core::marker::Freeze for aya::programs::lsm::LsmLinkId
  5046. impl core::marker::Send for aya::programs::lsm::LsmLinkId
  5047. impl core::marker::Sync for aya::programs::lsm::LsmLinkId
  5048. impl core::marker::Unpin for aya::programs::lsm::LsmLinkId
  5049. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::LsmLinkId
  5050. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::LsmLinkId
  5051. impl<Q, K> equivalent::Equivalent<K> for aya::programs::lsm::LsmLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5052. pub fn aya::programs::lsm::LsmLinkId::equivalent(&self, key: &K) -> bool
  5053. impl<T, U> core::convert::Into<U> for aya::programs::lsm::LsmLinkId where U: core::convert::From<T>
  5054. pub fn aya::programs::lsm::LsmLinkId::into(self) -> U
  5055. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::LsmLinkId where U: core::convert::Into<T>
  5056. pub type aya::programs::lsm::LsmLinkId::Error = core::convert::Infallible
  5057. pub fn aya::programs::lsm::LsmLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5058. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::LsmLinkId where U: core::convert::TryFrom<T>
  5059. pub type aya::programs::lsm::LsmLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5060. pub fn aya::programs::lsm::LsmLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5061. impl<T> core::any::Any for aya::programs::lsm::LsmLinkId where T: 'static + ?core::marker::Sized
  5062. pub fn aya::programs::lsm::LsmLinkId::type_id(&self) -> core::any::TypeId
  5063. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::LsmLinkId where T: ?core::marker::Sized
  5064. pub fn aya::programs::lsm::LsmLinkId::borrow(&self) -> &T
  5065. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::LsmLinkId where T: ?core::marker::Sized
  5066. pub fn aya::programs::lsm::LsmLinkId::borrow_mut(&mut self) -> &mut T
  5067. impl<T> core::convert::From<T> for aya::programs::lsm::LsmLinkId
  5068. pub fn aya::programs::lsm::LsmLinkId::from(t: T) -> T
  5069. pub mod aya::programs::perf_attach
  5070. pub struct aya::programs::perf_attach::PerfLink
  5071. impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink
  5072. pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId
  5073. pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5074. pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id
  5075. impl core::cmp::Eq for aya::programs::perf_attach::PerfLink
  5076. impl core::cmp::PartialEq for aya::programs::perf_attach::PerfLink
  5077. pub fn aya::programs::perf_attach::PerfLink::eq(&self, other: &Self) -> bool
  5078. impl core::fmt::Debug for aya::programs::perf_attach::PerfLink
  5079. pub fn aya::programs::perf_attach::PerfLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5080. impl core::hash::Hash for aya::programs::perf_attach::PerfLink
  5081. pub fn aya::programs::perf_attach::PerfLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5082. impl equivalent::Equivalent<aya::programs::perf_attach::PerfLink> for aya::programs::perf_attach::PerfLinkId
  5083. pub fn aya::programs::perf_attach::PerfLinkId::equivalent(&self, key: &aya::programs::perf_attach::PerfLink) -> bool
  5084. impl core::marker::Freeze for aya::programs::perf_attach::PerfLink
  5085. impl core::marker::Send for aya::programs::perf_attach::PerfLink
  5086. impl core::marker::Sync for aya::programs::perf_attach::PerfLink
  5087. impl core::marker::Unpin for aya::programs::perf_attach::PerfLink
  5088. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_attach::PerfLink
  5089. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_attach::PerfLink
  5090. impl<Q, K> equivalent::Equivalent<K> for aya::programs::perf_attach::PerfLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5091. pub fn aya::programs::perf_attach::PerfLink::equivalent(&self, key: &K) -> bool
  5092. impl<T, U> core::convert::Into<U> for aya::programs::perf_attach::PerfLink where U: core::convert::From<T>
  5093. pub fn aya::programs::perf_attach::PerfLink::into(self) -> U
  5094. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_attach::PerfLink where U: core::convert::Into<T>
  5095. pub type aya::programs::perf_attach::PerfLink::Error = core::convert::Infallible
  5096. pub fn aya::programs::perf_attach::PerfLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5097. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_attach::PerfLink where U: core::convert::TryFrom<T>
  5098. pub type aya::programs::perf_attach::PerfLink::Error = <U as core::convert::TryFrom<T>>::Error
  5099. pub fn aya::programs::perf_attach::PerfLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5100. impl<T> core::any::Any for aya::programs::perf_attach::PerfLink where T: 'static + ?core::marker::Sized
  5101. pub fn aya::programs::perf_attach::PerfLink::type_id(&self) -> core::any::TypeId
  5102. impl<T> core::borrow::Borrow<T> for aya::programs::perf_attach::PerfLink where T: ?core::marker::Sized
  5103. pub fn aya::programs::perf_attach::PerfLink::borrow(&self) -> &T
  5104. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_attach::PerfLink where T: ?core::marker::Sized
  5105. pub fn aya::programs::perf_attach::PerfLink::borrow_mut(&mut self) -> &mut T
  5106. impl<T> core::convert::From<T> for aya::programs::perf_attach::PerfLink
  5107. pub fn aya::programs::perf_attach::PerfLink::from(t: T) -> T
  5108. pub struct aya::programs::perf_attach::PerfLinkId(_)
  5109. impl core::cmp::Eq for aya::programs::perf_attach::PerfLinkId
  5110. impl core::cmp::PartialEq for aya::programs::perf_attach::PerfLinkId
  5111. pub fn aya::programs::perf_attach::PerfLinkId::eq(&self, other: &aya::programs::perf_attach::PerfLinkId) -> bool
  5112. impl core::fmt::Debug for aya::programs::perf_attach::PerfLinkId
  5113. pub fn aya::programs::perf_attach::PerfLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5114. impl core::hash::Hash for aya::programs::perf_attach::PerfLinkId
  5115. pub fn aya::programs::perf_attach::PerfLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5116. impl core::marker::StructuralPartialEq for aya::programs::perf_attach::PerfLinkId
  5117. impl equivalent::Equivalent<aya::programs::perf_attach::PerfLink> for aya::programs::perf_attach::PerfLinkId
  5118. pub fn aya::programs::perf_attach::PerfLinkId::equivalent(&self, key: &aya::programs::perf_attach::PerfLink) -> bool
  5119. impl core::marker::Freeze for aya::programs::perf_attach::PerfLinkId
  5120. impl core::marker::Send for aya::programs::perf_attach::PerfLinkId
  5121. impl core::marker::Sync for aya::programs::perf_attach::PerfLinkId
  5122. impl core::marker::Unpin for aya::programs::perf_attach::PerfLinkId
  5123. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_attach::PerfLinkId
  5124. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_attach::PerfLinkId
  5125. impl<Q, K> equivalent::Equivalent<K> for aya::programs::perf_attach::PerfLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5126. pub fn aya::programs::perf_attach::PerfLinkId::equivalent(&self, key: &K) -> bool
  5127. impl<T, U> core::convert::Into<U> for aya::programs::perf_attach::PerfLinkId where U: core::convert::From<T>
  5128. pub fn aya::programs::perf_attach::PerfLinkId::into(self) -> U
  5129. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_attach::PerfLinkId where U: core::convert::Into<T>
  5130. pub type aya::programs::perf_attach::PerfLinkId::Error = core::convert::Infallible
  5131. pub fn aya::programs::perf_attach::PerfLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5132. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_attach::PerfLinkId where U: core::convert::TryFrom<T>
  5133. pub type aya::programs::perf_attach::PerfLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5134. pub fn aya::programs::perf_attach::PerfLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5135. impl<T> core::any::Any for aya::programs::perf_attach::PerfLinkId where T: 'static + ?core::marker::Sized
  5136. pub fn aya::programs::perf_attach::PerfLinkId::type_id(&self) -> core::any::TypeId
  5137. impl<T> core::borrow::Borrow<T> for aya::programs::perf_attach::PerfLinkId where T: ?core::marker::Sized
  5138. pub fn aya::programs::perf_attach::PerfLinkId::borrow(&self) -> &T
  5139. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_attach::PerfLinkId where T: ?core::marker::Sized
  5140. pub fn aya::programs::perf_attach::PerfLinkId::borrow_mut(&mut self) -> &mut T
  5141. impl<T> core::convert::From<T> for aya::programs::perf_attach::PerfLinkId
  5142. pub fn aya::programs::perf_attach::PerfLinkId::from(t: T) -> T
  5143. pub mod aya::programs::perf_event
  5144. pub use aya::programs::perf_event::perf_hw_cache_id
  5145. pub use aya::programs::perf_event::perf_hw_cache_op_id
  5146. pub use aya::programs::perf_event::perf_hw_cache_op_result_id
  5147. pub use aya::programs::perf_event::perf_hw_id
  5148. pub use aya::programs::perf_event::perf_sw_ids
  5149. pub enum aya::programs::perf_event::PerfEventScope
  5150. pub aya::programs::perf_event::PerfEventScope::AllProcessesOneCpu
  5151. pub aya::programs::perf_event::PerfEventScope::AllProcessesOneCpu::cpu: u32
  5152. pub aya::programs::perf_event::PerfEventScope::CallingProcessAnyCpu
  5153. pub aya::programs::perf_event::PerfEventScope::CallingProcessOneCpu
  5154. pub aya::programs::perf_event::PerfEventScope::CallingProcessOneCpu::cpu: u32
  5155. pub aya::programs::perf_event::PerfEventScope::OneProcessAnyCpu
  5156. pub aya::programs::perf_event::PerfEventScope::OneProcessAnyCpu::pid: u32
  5157. pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu
  5158. pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu::cpu: u32
  5159. pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu::pid: u32
  5160. impl core::clone::Clone for aya::programs::perf_event::PerfEventScope
  5161. pub fn aya::programs::perf_event::PerfEventScope::clone(&self) -> aya::programs::perf_event::PerfEventScope
  5162. impl core::fmt::Debug for aya::programs::perf_event::PerfEventScope
  5163. pub fn aya::programs::perf_event::PerfEventScope::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5164. impl core::marker::Freeze for aya::programs::perf_event::PerfEventScope
  5165. impl core::marker::Send for aya::programs::perf_event::PerfEventScope
  5166. impl core::marker::Sync for aya::programs::perf_event::PerfEventScope
  5167. impl core::marker::Unpin for aya::programs::perf_event::PerfEventScope
  5168. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventScope
  5169. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventScope
  5170. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::From<T>
  5171. pub fn aya::programs::perf_event::PerfEventScope::into(self) -> U
  5172. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::Into<T>
  5173. pub type aya::programs::perf_event::PerfEventScope::Error = core::convert::Infallible
  5174. pub fn aya::programs::perf_event::PerfEventScope::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5175. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::TryFrom<T>
  5176. pub type aya::programs::perf_event::PerfEventScope::Error = <U as core::convert::TryFrom<T>>::Error
  5177. pub fn aya::programs::perf_event::PerfEventScope::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5178. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  5179. pub type aya::programs::perf_event::PerfEventScope::Owned = T
  5180. pub fn aya::programs::perf_event::PerfEventScope::clone_into(&self, target: &mut T)
  5181. pub fn aya::programs::perf_event::PerfEventScope::to_owned(&self) -> T
  5182. impl<T> core::any::Any for aya::programs::perf_event::PerfEventScope where T: 'static + ?core::marker::Sized
  5183. pub fn aya::programs::perf_event::PerfEventScope::type_id(&self) -> core::any::TypeId
  5184. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventScope where T: ?core::marker::Sized
  5185. pub fn aya::programs::perf_event::PerfEventScope::borrow(&self) -> &T
  5186. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventScope where T: ?core::marker::Sized
  5187. pub fn aya::programs::perf_event::PerfEventScope::borrow_mut(&mut self) -> &mut T
  5188. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  5189. pub unsafe fn aya::programs::perf_event::PerfEventScope::clone_to_uninit(&self, dest: *mut u8)
  5190. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventScope
  5191. pub fn aya::programs::perf_event::PerfEventScope::from(t: T) -> T
  5192. #[repr(u32)] pub enum aya::programs::perf_event::PerfTypeId
  5193. pub aya::programs::perf_event::PerfTypeId::Breakpoint = 5
  5194. pub aya::programs::perf_event::PerfTypeId::Hardware = 0
  5195. pub aya::programs::perf_event::PerfTypeId::HwCache = 3
  5196. pub aya::programs::perf_event::PerfTypeId::Raw = 4
  5197. pub aya::programs::perf_event::PerfTypeId::Software = 1
  5198. pub aya::programs::perf_event::PerfTypeId::TracePoint = 2
  5199. impl core::clone::Clone for aya::programs::perf_event::PerfTypeId
  5200. pub fn aya::programs::perf_event::PerfTypeId::clone(&self) -> aya::programs::perf_event::PerfTypeId
  5201. impl core::fmt::Debug for aya::programs::perf_event::PerfTypeId
  5202. pub fn aya::programs::perf_event::PerfTypeId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5203. impl core::marker::Freeze for aya::programs::perf_event::PerfTypeId
  5204. impl core::marker::Send for aya::programs::perf_event::PerfTypeId
  5205. impl core::marker::Sync for aya::programs::perf_event::PerfTypeId
  5206. impl core::marker::Unpin for aya::programs::perf_event::PerfTypeId
  5207. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfTypeId
  5208. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfTypeId
  5209. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::From<T>
  5210. pub fn aya::programs::perf_event::PerfTypeId::into(self) -> U
  5211. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::Into<T>
  5212. pub type aya::programs::perf_event::PerfTypeId::Error = core::convert::Infallible
  5213. pub fn aya::programs::perf_event::PerfTypeId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5214. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::TryFrom<T>
  5215. pub type aya::programs::perf_event::PerfTypeId::Error = <U as core::convert::TryFrom<T>>::Error
  5216. pub fn aya::programs::perf_event::PerfTypeId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5217. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  5218. pub type aya::programs::perf_event::PerfTypeId::Owned = T
  5219. pub fn aya::programs::perf_event::PerfTypeId::clone_into(&self, target: &mut T)
  5220. pub fn aya::programs::perf_event::PerfTypeId::to_owned(&self) -> T
  5221. impl<T> core::any::Any for aya::programs::perf_event::PerfTypeId where T: 'static + ?core::marker::Sized
  5222. pub fn aya::programs::perf_event::PerfTypeId::type_id(&self) -> core::any::TypeId
  5223. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfTypeId where T: ?core::marker::Sized
  5224. pub fn aya::programs::perf_event::PerfTypeId::borrow(&self) -> &T
  5225. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfTypeId where T: ?core::marker::Sized
  5226. pub fn aya::programs::perf_event::PerfTypeId::borrow_mut(&mut self) -> &mut T
  5227. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  5228. pub unsafe fn aya::programs::perf_event::PerfTypeId::clone_to_uninit(&self, dest: *mut u8)
  5229. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfTypeId
  5230. pub fn aya::programs::perf_event::PerfTypeId::from(t: T) -> T
  5231. pub enum aya::programs::perf_event::SamplePolicy
  5232. pub aya::programs::perf_event::SamplePolicy::Frequency(u64)
  5233. pub aya::programs::perf_event::SamplePolicy::Period(u64)
  5234. impl core::clone::Clone for aya::programs::perf_event::SamplePolicy
  5235. pub fn aya::programs::perf_event::SamplePolicy::clone(&self) -> aya::programs::perf_event::SamplePolicy
  5236. impl core::fmt::Debug for aya::programs::perf_event::SamplePolicy
  5237. pub fn aya::programs::perf_event::SamplePolicy::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5238. impl core::marker::Freeze for aya::programs::perf_event::SamplePolicy
  5239. impl core::marker::Send for aya::programs::perf_event::SamplePolicy
  5240. impl core::marker::Sync for aya::programs::perf_event::SamplePolicy
  5241. impl core::marker::Unpin for aya::programs::perf_event::SamplePolicy
  5242. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::SamplePolicy
  5243. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::SamplePolicy
  5244. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::From<T>
  5245. pub fn aya::programs::perf_event::SamplePolicy::into(self) -> U
  5246. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::Into<T>
  5247. pub type aya::programs::perf_event::SamplePolicy::Error = core::convert::Infallible
  5248. pub fn aya::programs::perf_event::SamplePolicy::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5249. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::TryFrom<T>
  5250. pub type aya::programs::perf_event::SamplePolicy::Error = <U as core::convert::TryFrom<T>>::Error
  5251. pub fn aya::programs::perf_event::SamplePolicy::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5252. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  5253. pub type aya::programs::perf_event::SamplePolicy::Owned = T
  5254. pub fn aya::programs::perf_event::SamplePolicy::clone_into(&self, target: &mut T)
  5255. pub fn aya::programs::perf_event::SamplePolicy::to_owned(&self) -> T
  5256. impl<T> core::any::Any for aya::programs::perf_event::SamplePolicy where T: 'static + ?core::marker::Sized
  5257. pub fn aya::programs::perf_event::SamplePolicy::type_id(&self) -> core::any::TypeId
  5258. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::SamplePolicy where T: ?core::marker::Sized
  5259. pub fn aya::programs::perf_event::SamplePolicy::borrow(&self) -> &T
  5260. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::SamplePolicy where T: ?core::marker::Sized
  5261. pub fn aya::programs::perf_event::SamplePolicy::borrow_mut(&mut self) -> &mut T
  5262. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  5263. pub unsafe fn aya::programs::perf_event::SamplePolicy::clone_to_uninit(&self, dest: *mut u8)
  5264. impl<T> core::convert::From<T> for aya::programs::perf_event::SamplePolicy
  5265. pub fn aya::programs::perf_event::SamplePolicy::from(t: T) -> T
  5266. pub struct aya::programs::perf_event::PerfEvent
  5267. impl aya::programs::perf_event::PerfEvent
  5268. pub const aya::programs::perf_event::PerfEvent::PROGRAM_TYPE: aya::programs::ProgramType
  5269. pub fn aya::programs::perf_event::PerfEvent::attach(&mut self, perf_type: aya::programs::perf_event::PerfTypeId, config: u64, scope: aya::programs::perf_event::PerfEventScope, sample_policy: aya::programs::perf_event::SamplePolicy, inherit: bool) -> core::result::Result<aya::programs::perf_event::PerfEventLinkId, aya::programs::ProgramError>
  5270. pub fn aya::programs::perf_event::PerfEvent::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5271. impl aya::programs::perf_event::PerfEvent
  5272. pub fn aya::programs::perf_event::PerfEvent::detach(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5273. pub fn aya::programs::perf_event::PerfEvent::take_link(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<aya::programs::perf_event::PerfEventLink, aya::programs::ProgramError>
  5274. impl aya::programs::perf_event::PerfEvent
  5275. pub fn aya::programs::perf_event::PerfEvent::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5276. impl aya::programs::perf_event::PerfEvent
  5277. pub fn aya::programs::perf_event::PerfEvent::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  5278. impl aya::programs::perf_event::PerfEvent
  5279. pub fn aya::programs::perf_event::PerfEvent::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  5280. impl aya::programs::perf_event::PerfEvent
  5281. pub fn aya::programs::perf_event::PerfEvent::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5282. impl aya::programs::perf_event::PerfEvent
  5283. pub fn aya::programs::perf_event::PerfEvent::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5284. pub fn aya::programs::perf_event::PerfEvent::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5285. impl aya::programs::perf_event::PerfEvent
  5286. pub fn aya::programs::perf_event::PerfEvent::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5287. impl core::fmt::Debug for aya::programs::perf_event::PerfEvent
  5288. pub fn aya::programs::perf_event::PerfEvent::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5289. impl core::ops::drop::Drop for aya::programs::perf_event::PerfEvent
  5290. pub fn aya::programs::perf_event::PerfEvent::drop(&mut self)
  5291. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent
  5292. pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  5293. pub fn &'a aya::programs::perf_event::PerfEvent::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  5294. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent
  5295. pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  5296. pub fn &'a mut aya::programs::perf_event::PerfEvent::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  5297. impl core::marker::Freeze for aya::programs::perf_event::PerfEvent
  5298. impl core::marker::Send for aya::programs::perf_event::PerfEvent
  5299. impl core::marker::Sync for aya::programs::perf_event::PerfEvent
  5300. impl core::marker::Unpin for aya::programs::perf_event::PerfEvent
  5301. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEvent
  5302. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEvent
  5303. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEvent where U: core::convert::From<T>
  5304. pub fn aya::programs::perf_event::PerfEvent::into(self) -> U
  5305. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEvent where U: core::convert::Into<T>
  5306. pub type aya::programs::perf_event::PerfEvent::Error = core::convert::Infallible
  5307. pub fn aya::programs::perf_event::PerfEvent::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5308. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEvent where U: core::convert::TryFrom<T>
  5309. pub type aya::programs::perf_event::PerfEvent::Error = <U as core::convert::TryFrom<T>>::Error
  5310. pub fn aya::programs::perf_event::PerfEvent::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5311. impl<T> core::any::Any for aya::programs::perf_event::PerfEvent where T: 'static + ?core::marker::Sized
  5312. pub fn aya::programs::perf_event::PerfEvent::type_id(&self) -> core::any::TypeId
  5313. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEvent where T: ?core::marker::Sized
  5314. pub fn aya::programs::perf_event::PerfEvent::borrow(&self) -> &T
  5315. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEvent where T: ?core::marker::Sized
  5316. pub fn aya::programs::perf_event::PerfEvent::borrow_mut(&mut self) -> &mut T
  5317. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEvent
  5318. pub fn aya::programs::perf_event::PerfEvent::from(t: T) -> T
  5319. pub struct aya::programs::perf_event::PerfEventLink(_)
  5320. impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink
  5321. pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId
  5322. pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5323. pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id
  5324. impl core::cmp::Eq for aya::programs::perf_event::PerfEventLink
  5325. impl core::cmp::PartialEq for aya::programs::perf_event::PerfEventLink
  5326. pub fn aya::programs::perf_event::PerfEventLink::eq(&self, other: &Self) -> bool
  5327. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::perf_event::PerfEventLink
  5328. pub type aya::programs::perf_event::PerfEventLink::Error = aya::programs::links::LinkError
  5329. pub fn aya::programs::perf_event::PerfEventLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  5330. impl core::convert::TryFrom<aya::programs::perf_event::PerfEventLink> for aya::programs::links::FdLink
  5331. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  5332. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::perf_event::PerfEventLink) -> core::result::Result<Self, Self::Error>
  5333. impl core::fmt::Debug for aya::programs::perf_event::PerfEventLink
  5334. pub fn aya::programs::perf_event::PerfEventLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5335. impl core::hash::Hash for aya::programs::perf_event::PerfEventLink
  5336. pub fn aya::programs::perf_event::PerfEventLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5337. impl core::ops::drop::Drop for aya::programs::perf_event::PerfEventLink
  5338. pub fn aya::programs::perf_event::PerfEventLink::drop(&mut self)
  5339. impl equivalent::Equivalent<aya::programs::perf_event::PerfEventLink> for aya::programs::perf_event::PerfEventLinkId
  5340. pub fn aya::programs::perf_event::PerfEventLinkId::equivalent(&self, key: &aya::programs::perf_event::PerfEventLink) -> bool
  5341. impl core::marker::Freeze for aya::programs::perf_event::PerfEventLink
  5342. impl core::marker::Send for aya::programs::perf_event::PerfEventLink
  5343. impl core::marker::Sync for aya::programs::perf_event::PerfEventLink
  5344. impl core::marker::Unpin for aya::programs::perf_event::PerfEventLink
  5345. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventLink
  5346. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventLink
  5347. impl<Q, K> equivalent::Equivalent<K> for aya::programs::perf_event::PerfEventLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5348. pub fn aya::programs::perf_event::PerfEventLink::equivalent(&self, key: &K) -> bool
  5349. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventLink where U: core::convert::From<T>
  5350. pub fn aya::programs::perf_event::PerfEventLink::into(self) -> U
  5351. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventLink where U: core::convert::Into<T>
  5352. pub type aya::programs::perf_event::PerfEventLink::Error = core::convert::Infallible
  5353. pub fn aya::programs::perf_event::PerfEventLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5354. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventLink where U: core::convert::TryFrom<T>
  5355. pub type aya::programs::perf_event::PerfEventLink::Error = <U as core::convert::TryFrom<T>>::Error
  5356. pub fn aya::programs::perf_event::PerfEventLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5357. impl<T> core::any::Any for aya::programs::perf_event::PerfEventLink where T: 'static + ?core::marker::Sized
  5358. pub fn aya::programs::perf_event::PerfEventLink::type_id(&self) -> core::any::TypeId
  5359. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventLink where T: ?core::marker::Sized
  5360. pub fn aya::programs::perf_event::PerfEventLink::borrow(&self) -> &T
  5361. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventLink where T: ?core::marker::Sized
  5362. pub fn aya::programs::perf_event::PerfEventLink::borrow_mut(&mut self) -> &mut T
  5363. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventLink
  5364. pub fn aya::programs::perf_event::PerfEventLink::from(t: T) -> T
  5365. pub struct aya::programs::perf_event::PerfEventLinkId(_)
  5366. impl core::cmp::Eq for aya::programs::perf_event::PerfEventLinkId
  5367. impl core::cmp::PartialEq for aya::programs::perf_event::PerfEventLinkId
  5368. pub fn aya::programs::perf_event::PerfEventLinkId::eq(&self, other: &aya::programs::perf_event::PerfEventLinkId) -> bool
  5369. impl core::fmt::Debug for aya::programs::perf_event::PerfEventLinkId
  5370. pub fn aya::programs::perf_event::PerfEventLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5371. impl core::hash::Hash for aya::programs::perf_event::PerfEventLinkId
  5372. pub fn aya::programs::perf_event::PerfEventLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5373. impl core::marker::StructuralPartialEq for aya::programs::perf_event::PerfEventLinkId
  5374. impl equivalent::Equivalent<aya::programs::perf_event::PerfEventLink> for aya::programs::perf_event::PerfEventLinkId
  5375. pub fn aya::programs::perf_event::PerfEventLinkId::equivalent(&self, key: &aya::programs::perf_event::PerfEventLink) -> bool
  5376. impl core::marker::Freeze for aya::programs::perf_event::PerfEventLinkId
  5377. impl core::marker::Send for aya::programs::perf_event::PerfEventLinkId
  5378. impl core::marker::Sync for aya::programs::perf_event::PerfEventLinkId
  5379. impl core::marker::Unpin for aya::programs::perf_event::PerfEventLinkId
  5380. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventLinkId
  5381. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventLinkId
  5382. impl<Q, K> equivalent::Equivalent<K> for aya::programs::perf_event::PerfEventLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5383. pub fn aya::programs::perf_event::PerfEventLinkId::equivalent(&self, key: &K) -> bool
  5384. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventLinkId where U: core::convert::From<T>
  5385. pub fn aya::programs::perf_event::PerfEventLinkId::into(self) -> U
  5386. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventLinkId where U: core::convert::Into<T>
  5387. pub type aya::programs::perf_event::PerfEventLinkId::Error = core::convert::Infallible
  5388. pub fn aya::programs::perf_event::PerfEventLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5389. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventLinkId where U: core::convert::TryFrom<T>
  5390. pub type aya::programs::perf_event::PerfEventLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5391. pub fn aya::programs::perf_event::PerfEventLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5392. impl<T> core::any::Any for aya::programs::perf_event::PerfEventLinkId where T: 'static + ?core::marker::Sized
  5393. pub fn aya::programs::perf_event::PerfEventLinkId::type_id(&self) -> core::any::TypeId
  5394. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventLinkId where T: ?core::marker::Sized
  5395. pub fn aya::programs::perf_event::PerfEventLinkId::borrow(&self) -> &T
  5396. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventLinkId where T: ?core::marker::Sized
  5397. pub fn aya::programs::perf_event::PerfEventLinkId::borrow_mut(&mut self) -> &mut T
  5398. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventLinkId
  5399. pub fn aya::programs::perf_event::PerfEventLinkId::from(t: T) -> T
  5400. pub mod aya::programs::raw_trace_point
  5401. pub struct aya::programs::raw_trace_point::RawTracePoint
  5402. impl aya::programs::raw_trace_point::RawTracePoint
  5403. pub const aya::programs::raw_trace_point::RawTracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  5404. pub fn aya::programs::raw_trace_point::RawTracePoint::attach(&mut self, tp_name: &str) -> core::result::Result<aya::programs::raw_trace_point::RawTracePointLinkId, aya::programs::ProgramError>
  5405. pub fn aya::programs::raw_trace_point::RawTracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5406. impl aya::programs::raw_trace_point::RawTracePoint
  5407. pub fn aya::programs::raw_trace_point::RawTracePoint::detach(&mut self, link_id: aya::programs::raw_trace_point::RawTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5408. pub fn aya::programs::raw_trace_point::RawTracePoint::take_link(&mut self, link_id: aya::programs::raw_trace_point::RawTracePointLinkId) -> core::result::Result<aya::programs::raw_trace_point::RawTracePointLink, aya::programs::ProgramError>
  5409. impl aya::programs::raw_trace_point::RawTracePoint
  5410. pub fn aya::programs::raw_trace_point::RawTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5411. impl aya::programs::raw_trace_point::RawTracePoint
  5412. pub fn aya::programs::raw_trace_point::RawTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  5413. impl aya::programs::raw_trace_point::RawTracePoint
  5414. pub fn aya::programs::raw_trace_point::RawTracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  5415. impl aya::programs::raw_trace_point::RawTracePoint
  5416. pub fn aya::programs::raw_trace_point::RawTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5417. impl aya::programs::raw_trace_point::RawTracePoint
  5418. pub fn aya::programs::raw_trace_point::RawTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5419. pub fn aya::programs::raw_trace_point::RawTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5420. impl aya::programs::raw_trace_point::RawTracePoint
  5421. pub fn aya::programs::raw_trace_point::RawTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5422. impl core::fmt::Debug for aya::programs::raw_trace_point::RawTracePoint
  5423. pub fn aya::programs::raw_trace_point::RawTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5424. impl core::ops::drop::Drop for aya::programs::raw_trace_point::RawTracePoint
  5425. pub fn aya::programs::raw_trace_point::RawTracePoint::drop(&mut self)
  5426. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::raw_trace_point::RawTracePoint
  5427. pub type &'a aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  5428. pub fn &'a aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  5429. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::raw_trace_point::RawTracePoint
  5430. pub type &'a mut aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  5431. pub fn &'a mut aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  5432. impl core::marker::Freeze for aya::programs::raw_trace_point::RawTracePoint
  5433. impl core::marker::Send for aya::programs::raw_trace_point::RawTracePoint
  5434. impl core::marker::Sync for aya::programs::raw_trace_point::RawTracePoint
  5435. impl core::marker::Unpin for aya::programs::raw_trace_point::RawTracePoint
  5436. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::raw_trace_point::RawTracePoint
  5437. impl core::panic::unwind_safe::UnwindSafe for aya::programs::raw_trace_point::RawTracePoint
  5438. impl<T, U> core::convert::Into<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::From<T>
  5439. pub fn aya::programs::raw_trace_point::RawTracePoint::into(self) -> U
  5440. impl<T, U> core::convert::TryFrom<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::Into<T>
  5441. pub type aya::programs::raw_trace_point::RawTracePoint::Error = core::convert::Infallible
  5442. pub fn aya::programs::raw_trace_point::RawTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5443. impl<T, U> core::convert::TryInto<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::TryFrom<T>
  5444. pub type aya::programs::raw_trace_point::RawTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  5445. pub fn aya::programs::raw_trace_point::RawTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5446. impl<T> core::any::Any for aya::programs::raw_trace_point::RawTracePoint where T: 'static + ?core::marker::Sized
  5447. pub fn aya::programs::raw_trace_point::RawTracePoint::type_id(&self) -> core::any::TypeId
  5448. impl<T> core::borrow::Borrow<T> for aya::programs::raw_trace_point::RawTracePoint where T: ?core::marker::Sized
  5449. pub fn aya::programs::raw_trace_point::RawTracePoint::borrow(&self) -> &T
  5450. impl<T> core::borrow::BorrowMut<T> for aya::programs::raw_trace_point::RawTracePoint where T: ?core::marker::Sized
  5451. pub fn aya::programs::raw_trace_point::RawTracePoint::borrow_mut(&mut self) -> &mut T
  5452. impl<T> core::convert::From<T> for aya::programs::raw_trace_point::RawTracePoint
  5453. pub fn aya::programs::raw_trace_point::RawTracePoint::from(t: T) -> T
  5454. pub struct aya::programs::raw_trace_point::RawTracePointLink(_)
  5455. impl aya::programs::links::Link for aya::programs::raw_trace_point::RawTracePointLink
  5456. pub type aya::programs::raw_trace_point::RawTracePointLink::Id = aya::programs::raw_trace_point::RawTracePointLinkId
  5457. pub fn aya::programs::raw_trace_point::RawTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5458. pub fn aya::programs::raw_trace_point::RawTracePointLink::id(&self) -> Self::Id
  5459. impl core::cmp::Eq for aya::programs::raw_trace_point::RawTracePointLink
  5460. impl core::cmp::PartialEq for aya::programs::raw_trace_point::RawTracePointLink
  5461. pub fn aya::programs::raw_trace_point::RawTracePointLink::eq(&self, other: &Self) -> bool
  5462. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::raw_trace_point::RawTracePointLink
  5463. pub fn aya::programs::raw_trace_point::RawTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::raw_trace_point::RawTracePointLink
  5464. impl core::convert::From<aya::programs::raw_trace_point::RawTracePointLink> for aya::programs::links::FdLink
  5465. pub fn aya::programs::links::FdLink::from(w: aya::programs::raw_trace_point::RawTracePointLink) -> aya::programs::links::FdLink
  5466. impl core::fmt::Debug for aya::programs::raw_trace_point::RawTracePointLink
  5467. pub fn aya::programs::raw_trace_point::RawTracePointLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5468. impl core::hash::Hash for aya::programs::raw_trace_point::RawTracePointLink
  5469. pub fn aya::programs::raw_trace_point::RawTracePointLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5470. impl core::ops::drop::Drop for aya::programs::raw_trace_point::RawTracePointLink
  5471. pub fn aya::programs::raw_trace_point::RawTracePointLink::drop(&mut self)
  5472. impl equivalent::Equivalent<aya::programs::raw_trace_point::RawTracePointLink> for aya::programs::raw_trace_point::RawTracePointLinkId
  5473. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::equivalent(&self, key: &aya::programs::raw_trace_point::RawTracePointLink) -> bool
  5474. impl core::marker::Freeze for aya::programs::raw_trace_point::RawTracePointLink
  5475. impl core::marker::Send for aya::programs::raw_trace_point::RawTracePointLink
  5476. impl core::marker::Sync for aya::programs::raw_trace_point::RawTracePointLink
  5477. impl core::marker::Unpin for aya::programs::raw_trace_point::RawTracePointLink
  5478. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::raw_trace_point::RawTracePointLink
  5479. impl core::panic::unwind_safe::UnwindSafe for aya::programs::raw_trace_point::RawTracePointLink
  5480. impl<Q, K> equivalent::Equivalent<K> for aya::programs::raw_trace_point::RawTracePointLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5481. pub fn aya::programs::raw_trace_point::RawTracePointLink::equivalent(&self, key: &K) -> bool
  5482. impl<T, U> core::convert::Into<U> for aya::programs::raw_trace_point::RawTracePointLink where U: core::convert::From<T>
  5483. pub fn aya::programs::raw_trace_point::RawTracePointLink::into(self) -> U
  5484. impl<T, U> core::convert::TryFrom<U> for aya::programs::raw_trace_point::RawTracePointLink where U: core::convert::Into<T>
  5485. pub type aya::programs::raw_trace_point::RawTracePointLink::Error = core::convert::Infallible
  5486. pub fn aya::programs::raw_trace_point::RawTracePointLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5487. impl<T, U> core::convert::TryInto<U> for aya::programs::raw_trace_point::RawTracePointLink where U: core::convert::TryFrom<T>
  5488. pub type aya::programs::raw_trace_point::RawTracePointLink::Error = <U as core::convert::TryFrom<T>>::Error
  5489. pub fn aya::programs::raw_trace_point::RawTracePointLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5490. impl<T> core::any::Any for aya::programs::raw_trace_point::RawTracePointLink where T: 'static + ?core::marker::Sized
  5491. pub fn aya::programs::raw_trace_point::RawTracePointLink::type_id(&self) -> core::any::TypeId
  5492. impl<T> core::borrow::Borrow<T> for aya::programs::raw_trace_point::RawTracePointLink where T: ?core::marker::Sized
  5493. pub fn aya::programs::raw_trace_point::RawTracePointLink::borrow(&self) -> &T
  5494. impl<T> core::borrow::BorrowMut<T> for aya::programs::raw_trace_point::RawTracePointLink where T: ?core::marker::Sized
  5495. pub fn aya::programs::raw_trace_point::RawTracePointLink::borrow_mut(&mut self) -> &mut T
  5496. impl<T> core::convert::From<T> for aya::programs::raw_trace_point::RawTracePointLink
  5497. pub fn aya::programs::raw_trace_point::RawTracePointLink::from(t: T) -> T
  5498. pub struct aya::programs::raw_trace_point::RawTracePointLinkId(_)
  5499. impl core::cmp::Eq for aya::programs::raw_trace_point::RawTracePointLinkId
  5500. impl core::cmp::PartialEq for aya::programs::raw_trace_point::RawTracePointLinkId
  5501. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::eq(&self, other: &aya::programs::raw_trace_point::RawTracePointLinkId) -> bool
  5502. impl core::fmt::Debug for aya::programs::raw_trace_point::RawTracePointLinkId
  5503. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5504. impl core::hash::Hash for aya::programs::raw_trace_point::RawTracePointLinkId
  5505. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5506. impl core::marker::StructuralPartialEq for aya::programs::raw_trace_point::RawTracePointLinkId
  5507. impl equivalent::Equivalent<aya::programs::raw_trace_point::RawTracePointLink> for aya::programs::raw_trace_point::RawTracePointLinkId
  5508. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::equivalent(&self, key: &aya::programs::raw_trace_point::RawTracePointLink) -> bool
  5509. impl core::marker::Freeze for aya::programs::raw_trace_point::RawTracePointLinkId
  5510. impl core::marker::Send for aya::programs::raw_trace_point::RawTracePointLinkId
  5511. impl core::marker::Sync for aya::programs::raw_trace_point::RawTracePointLinkId
  5512. impl core::marker::Unpin for aya::programs::raw_trace_point::RawTracePointLinkId
  5513. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::raw_trace_point::RawTracePointLinkId
  5514. impl core::panic::unwind_safe::UnwindSafe for aya::programs::raw_trace_point::RawTracePointLinkId
  5515. impl<Q, K> equivalent::Equivalent<K> for aya::programs::raw_trace_point::RawTracePointLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5516. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::equivalent(&self, key: &K) -> bool
  5517. impl<T, U> core::convert::Into<U> for aya::programs::raw_trace_point::RawTracePointLinkId where U: core::convert::From<T>
  5518. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::into(self) -> U
  5519. impl<T, U> core::convert::TryFrom<U> for aya::programs::raw_trace_point::RawTracePointLinkId where U: core::convert::Into<T>
  5520. pub type aya::programs::raw_trace_point::RawTracePointLinkId::Error = core::convert::Infallible
  5521. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5522. impl<T, U> core::convert::TryInto<U> for aya::programs::raw_trace_point::RawTracePointLinkId where U: core::convert::TryFrom<T>
  5523. pub type aya::programs::raw_trace_point::RawTracePointLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5524. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5525. impl<T> core::any::Any for aya::programs::raw_trace_point::RawTracePointLinkId where T: 'static + ?core::marker::Sized
  5526. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::type_id(&self) -> core::any::TypeId
  5527. impl<T> core::borrow::Borrow<T> for aya::programs::raw_trace_point::RawTracePointLinkId where T: ?core::marker::Sized
  5528. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::borrow(&self) -> &T
  5529. impl<T> core::borrow::BorrowMut<T> for aya::programs::raw_trace_point::RawTracePointLinkId where T: ?core::marker::Sized
  5530. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::borrow_mut(&mut self) -> &mut T
  5531. impl<T> core::convert::From<T> for aya::programs::raw_trace_point::RawTracePointLinkId
  5532. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::from(t: T) -> T
  5533. pub mod aya::programs::sk_lookup
  5534. pub struct aya::programs::sk_lookup::SkLookup
  5535. impl aya::programs::sk_lookup::SkLookup
  5536. pub const aya::programs::sk_lookup::SkLookup::PROGRAM_TYPE: aya::programs::ProgramType
  5537. pub fn aya::programs::sk_lookup::SkLookup::attach<T: std::os::fd::owned::AsFd>(&mut self, netns: T) -> core::result::Result<aya::programs::sk_lookup::SkLookupLinkId, aya::programs::ProgramError>
  5538. pub fn aya::programs::sk_lookup::SkLookup::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5539. impl aya::programs::sk_lookup::SkLookup
  5540. pub fn aya::programs::sk_lookup::SkLookup::detach(&mut self, link_id: aya::programs::sk_lookup::SkLookupLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5541. pub fn aya::programs::sk_lookup::SkLookup::take_link(&mut self, link_id: aya::programs::sk_lookup::SkLookupLinkId) -> core::result::Result<aya::programs::sk_lookup::SkLookupLink, aya::programs::ProgramError>
  5542. impl aya::programs::sk_lookup::SkLookup
  5543. pub fn aya::programs::sk_lookup::SkLookup::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5544. impl aya::programs::sk_lookup::SkLookup
  5545. pub fn aya::programs::sk_lookup::SkLookup::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  5546. impl aya::programs::sk_lookup::SkLookup
  5547. pub fn aya::programs::sk_lookup::SkLookup::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  5548. impl aya::programs::sk_lookup::SkLookup
  5549. pub fn aya::programs::sk_lookup::SkLookup::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5550. impl aya::programs::sk_lookup::SkLookup
  5551. pub fn aya::programs::sk_lookup::SkLookup::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5552. pub fn aya::programs::sk_lookup::SkLookup::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5553. impl aya::programs::sk_lookup::SkLookup
  5554. pub fn aya::programs::sk_lookup::SkLookup::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5555. impl core::fmt::Debug for aya::programs::sk_lookup::SkLookup
  5556. pub fn aya::programs::sk_lookup::SkLookup::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5557. impl core::ops::drop::Drop for aya::programs::sk_lookup::SkLookup
  5558. pub fn aya::programs::sk_lookup::SkLookup::drop(&mut self)
  5559. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_lookup::SkLookup
  5560. pub type &'a aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  5561. pub fn &'a aya::programs::sk_lookup::SkLookup::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  5562. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_lookup::SkLookup
  5563. pub type &'a mut aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  5564. pub fn &'a mut aya::programs::sk_lookup::SkLookup::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  5565. impl core::marker::Freeze for aya::programs::sk_lookup::SkLookup
  5566. impl core::marker::Send for aya::programs::sk_lookup::SkLookup
  5567. impl core::marker::Sync for aya::programs::sk_lookup::SkLookup
  5568. impl core::marker::Unpin for aya::programs::sk_lookup::SkLookup
  5569. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_lookup::SkLookup
  5570. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_lookup::SkLookup
  5571. impl<T, U> core::convert::Into<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::From<T>
  5572. pub fn aya::programs::sk_lookup::SkLookup::into(self) -> U
  5573. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::Into<T>
  5574. pub type aya::programs::sk_lookup::SkLookup::Error = core::convert::Infallible
  5575. pub fn aya::programs::sk_lookup::SkLookup::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5576. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::TryFrom<T>
  5577. pub type aya::programs::sk_lookup::SkLookup::Error = <U as core::convert::TryFrom<T>>::Error
  5578. pub fn aya::programs::sk_lookup::SkLookup::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5579. impl<T> core::any::Any for aya::programs::sk_lookup::SkLookup where T: 'static + ?core::marker::Sized
  5580. pub fn aya::programs::sk_lookup::SkLookup::type_id(&self) -> core::any::TypeId
  5581. impl<T> core::borrow::Borrow<T> for aya::programs::sk_lookup::SkLookup where T: ?core::marker::Sized
  5582. pub fn aya::programs::sk_lookup::SkLookup::borrow(&self) -> &T
  5583. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_lookup::SkLookup where T: ?core::marker::Sized
  5584. pub fn aya::programs::sk_lookup::SkLookup::borrow_mut(&mut self) -> &mut T
  5585. impl<T> core::convert::From<T> for aya::programs::sk_lookup::SkLookup
  5586. pub fn aya::programs::sk_lookup::SkLookup::from(t: T) -> T
  5587. pub struct aya::programs::sk_lookup::SkLookupLink(_)
  5588. impl aya::programs::links::Link for aya::programs::sk_lookup::SkLookupLink
  5589. pub type aya::programs::sk_lookup::SkLookupLink::Id = aya::programs::sk_lookup::SkLookupLinkId
  5590. pub fn aya::programs::sk_lookup::SkLookupLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5591. pub fn aya::programs::sk_lookup::SkLookupLink::id(&self) -> Self::Id
  5592. impl core::cmp::Eq for aya::programs::sk_lookup::SkLookupLink
  5593. impl core::cmp::PartialEq for aya::programs::sk_lookup::SkLookupLink
  5594. pub fn aya::programs::sk_lookup::SkLookupLink::eq(&self, other: &Self) -> bool
  5595. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::sk_lookup::SkLookupLink
  5596. pub fn aya::programs::sk_lookup::SkLookupLink::from(b: aya::programs::links::FdLink) -> aya::programs::sk_lookup::SkLookupLink
  5597. impl core::convert::From<aya::programs::sk_lookup::SkLookupLink> for aya::programs::links::FdLink
  5598. pub fn aya::programs::links::FdLink::from(w: aya::programs::sk_lookup::SkLookupLink) -> aya::programs::links::FdLink
  5599. impl core::fmt::Debug for aya::programs::sk_lookup::SkLookupLink
  5600. pub fn aya::programs::sk_lookup::SkLookupLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5601. impl core::hash::Hash for aya::programs::sk_lookup::SkLookupLink
  5602. pub fn aya::programs::sk_lookup::SkLookupLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5603. impl core::ops::drop::Drop for aya::programs::sk_lookup::SkLookupLink
  5604. pub fn aya::programs::sk_lookup::SkLookupLink::drop(&mut self)
  5605. impl equivalent::Equivalent<aya::programs::sk_lookup::SkLookupLink> for aya::programs::sk_lookup::SkLookupLinkId
  5606. pub fn aya::programs::sk_lookup::SkLookupLinkId::equivalent(&self, key: &aya::programs::sk_lookup::SkLookupLink) -> bool
  5607. impl core::marker::Freeze for aya::programs::sk_lookup::SkLookupLink
  5608. impl core::marker::Send for aya::programs::sk_lookup::SkLookupLink
  5609. impl core::marker::Sync for aya::programs::sk_lookup::SkLookupLink
  5610. impl core::marker::Unpin for aya::programs::sk_lookup::SkLookupLink
  5611. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_lookup::SkLookupLink
  5612. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_lookup::SkLookupLink
  5613. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_lookup::SkLookupLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5614. pub fn aya::programs::sk_lookup::SkLookupLink::equivalent(&self, key: &K) -> bool
  5615. impl<T, U> core::convert::Into<U> for aya::programs::sk_lookup::SkLookupLink where U: core::convert::From<T>
  5616. pub fn aya::programs::sk_lookup::SkLookupLink::into(self) -> U
  5617. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_lookup::SkLookupLink where U: core::convert::Into<T>
  5618. pub type aya::programs::sk_lookup::SkLookupLink::Error = core::convert::Infallible
  5619. pub fn aya::programs::sk_lookup::SkLookupLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5620. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_lookup::SkLookupLink where U: core::convert::TryFrom<T>
  5621. pub type aya::programs::sk_lookup::SkLookupLink::Error = <U as core::convert::TryFrom<T>>::Error
  5622. pub fn aya::programs::sk_lookup::SkLookupLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5623. impl<T> core::any::Any for aya::programs::sk_lookup::SkLookupLink where T: 'static + ?core::marker::Sized
  5624. pub fn aya::programs::sk_lookup::SkLookupLink::type_id(&self) -> core::any::TypeId
  5625. impl<T> core::borrow::Borrow<T> for aya::programs::sk_lookup::SkLookupLink where T: ?core::marker::Sized
  5626. pub fn aya::programs::sk_lookup::SkLookupLink::borrow(&self) -> &T
  5627. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_lookup::SkLookupLink where T: ?core::marker::Sized
  5628. pub fn aya::programs::sk_lookup::SkLookupLink::borrow_mut(&mut self) -> &mut T
  5629. impl<T> core::convert::From<T> for aya::programs::sk_lookup::SkLookupLink
  5630. pub fn aya::programs::sk_lookup::SkLookupLink::from(t: T) -> T
  5631. pub struct aya::programs::sk_lookup::SkLookupLinkId(_)
  5632. impl core::cmp::Eq for aya::programs::sk_lookup::SkLookupLinkId
  5633. impl core::cmp::PartialEq for aya::programs::sk_lookup::SkLookupLinkId
  5634. pub fn aya::programs::sk_lookup::SkLookupLinkId::eq(&self, other: &aya::programs::sk_lookup::SkLookupLinkId) -> bool
  5635. impl core::fmt::Debug for aya::programs::sk_lookup::SkLookupLinkId
  5636. pub fn aya::programs::sk_lookup::SkLookupLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5637. impl core::hash::Hash for aya::programs::sk_lookup::SkLookupLinkId
  5638. pub fn aya::programs::sk_lookup::SkLookupLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5639. impl core::marker::StructuralPartialEq for aya::programs::sk_lookup::SkLookupLinkId
  5640. impl equivalent::Equivalent<aya::programs::sk_lookup::SkLookupLink> for aya::programs::sk_lookup::SkLookupLinkId
  5641. pub fn aya::programs::sk_lookup::SkLookupLinkId::equivalent(&self, key: &aya::programs::sk_lookup::SkLookupLink) -> bool
  5642. impl core::marker::Freeze for aya::programs::sk_lookup::SkLookupLinkId
  5643. impl core::marker::Send for aya::programs::sk_lookup::SkLookupLinkId
  5644. impl core::marker::Sync for aya::programs::sk_lookup::SkLookupLinkId
  5645. impl core::marker::Unpin for aya::programs::sk_lookup::SkLookupLinkId
  5646. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_lookup::SkLookupLinkId
  5647. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_lookup::SkLookupLinkId
  5648. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_lookup::SkLookupLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5649. pub fn aya::programs::sk_lookup::SkLookupLinkId::equivalent(&self, key: &K) -> bool
  5650. impl<T, U> core::convert::Into<U> for aya::programs::sk_lookup::SkLookupLinkId where U: core::convert::From<T>
  5651. pub fn aya::programs::sk_lookup::SkLookupLinkId::into(self) -> U
  5652. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_lookup::SkLookupLinkId where U: core::convert::Into<T>
  5653. pub type aya::programs::sk_lookup::SkLookupLinkId::Error = core::convert::Infallible
  5654. pub fn aya::programs::sk_lookup::SkLookupLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5655. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_lookup::SkLookupLinkId where U: core::convert::TryFrom<T>
  5656. pub type aya::programs::sk_lookup::SkLookupLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5657. pub fn aya::programs::sk_lookup::SkLookupLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5658. impl<T> core::any::Any for aya::programs::sk_lookup::SkLookupLinkId where T: 'static + ?core::marker::Sized
  5659. pub fn aya::programs::sk_lookup::SkLookupLinkId::type_id(&self) -> core::any::TypeId
  5660. impl<T> core::borrow::Borrow<T> for aya::programs::sk_lookup::SkLookupLinkId where T: ?core::marker::Sized
  5661. pub fn aya::programs::sk_lookup::SkLookupLinkId::borrow(&self) -> &T
  5662. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_lookup::SkLookupLinkId where T: ?core::marker::Sized
  5663. pub fn aya::programs::sk_lookup::SkLookupLinkId::borrow_mut(&mut self) -> &mut T
  5664. impl<T> core::convert::From<T> for aya::programs::sk_lookup::SkLookupLinkId
  5665. pub fn aya::programs::sk_lookup::SkLookupLinkId::from(t: T) -> T
  5666. pub mod aya::programs::sk_msg
  5667. pub struct aya::programs::sk_msg::SkMsg
  5668. impl aya::programs::sk_msg::SkMsg
  5669. pub const aya::programs::sk_msg::SkMsg::PROGRAM_TYPE: aya::programs::ProgramType
  5670. pub fn aya::programs::sk_msg::SkMsg::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<aya::programs::sk_msg::SkMsgLinkId, aya::programs::ProgramError>
  5671. pub fn aya::programs::sk_msg::SkMsg::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5672. impl aya::programs::sk_msg::SkMsg
  5673. pub fn aya::programs::sk_msg::SkMsg::detach(&mut self, link_id: aya::programs::sk_msg::SkMsgLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5674. pub fn aya::programs::sk_msg::SkMsg::take_link(&mut self, link_id: aya::programs::sk_msg::SkMsgLinkId) -> core::result::Result<aya::programs::sk_msg::SkMsgLink, aya::programs::ProgramError>
  5675. impl aya::programs::sk_msg::SkMsg
  5676. pub fn aya::programs::sk_msg::SkMsg::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5677. impl aya::programs::sk_msg::SkMsg
  5678. pub fn aya::programs::sk_msg::SkMsg::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  5679. impl aya::programs::sk_msg::SkMsg
  5680. pub fn aya::programs::sk_msg::SkMsg::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  5681. impl aya::programs::sk_msg::SkMsg
  5682. pub fn aya::programs::sk_msg::SkMsg::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5683. impl aya::programs::sk_msg::SkMsg
  5684. pub fn aya::programs::sk_msg::SkMsg::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5685. pub fn aya::programs::sk_msg::SkMsg::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5686. impl aya::programs::sk_msg::SkMsg
  5687. pub fn aya::programs::sk_msg::SkMsg::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5688. impl core::fmt::Debug for aya::programs::sk_msg::SkMsg
  5689. pub fn aya::programs::sk_msg::SkMsg::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5690. impl core::ops::drop::Drop for aya::programs::sk_msg::SkMsg
  5691. pub fn aya::programs::sk_msg::SkMsg::drop(&mut self)
  5692. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_msg::SkMsg
  5693. pub type &'a aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  5694. pub fn &'a aya::programs::sk_msg::SkMsg::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  5695. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_msg::SkMsg
  5696. pub type &'a mut aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  5697. pub fn &'a mut aya::programs::sk_msg::SkMsg::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  5698. impl core::marker::Freeze for aya::programs::sk_msg::SkMsg
  5699. impl core::marker::Send for aya::programs::sk_msg::SkMsg
  5700. impl core::marker::Sync for aya::programs::sk_msg::SkMsg
  5701. impl core::marker::Unpin for aya::programs::sk_msg::SkMsg
  5702. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_msg::SkMsg
  5703. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_msg::SkMsg
  5704. impl<T, U> core::convert::Into<U> for aya::programs::sk_msg::SkMsg where U: core::convert::From<T>
  5705. pub fn aya::programs::sk_msg::SkMsg::into(self) -> U
  5706. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_msg::SkMsg where U: core::convert::Into<T>
  5707. pub type aya::programs::sk_msg::SkMsg::Error = core::convert::Infallible
  5708. pub fn aya::programs::sk_msg::SkMsg::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5709. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_msg::SkMsg where U: core::convert::TryFrom<T>
  5710. pub type aya::programs::sk_msg::SkMsg::Error = <U as core::convert::TryFrom<T>>::Error
  5711. pub fn aya::programs::sk_msg::SkMsg::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5712. impl<T> core::any::Any for aya::programs::sk_msg::SkMsg where T: 'static + ?core::marker::Sized
  5713. pub fn aya::programs::sk_msg::SkMsg::type_id(&self) -> core::any::TypeId
  5714. impl<T> core::borrow::Borrow<T> for aya::programs::sk_msg::SkMsg where T: ?core::marker::Sized
  5715. pub fn aya::programs::sk_msg::SkMsg::borrow(&self) -> &T
  5716. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_msg::SkMsg where T: ?core::marker::Sized
  5717. pub fn aya::programs::sk_msg::SkMsg::borrow_mut(&mut self) -> &mut T
  5718. impl<T> core::convert::From<T> for aya::programs::sk_msg::SkMsg
  5719. pub fn aya::programs::sk_msg::SkMsg::from(t: T) -> T
  5720. pub struct aya::programs::sk_msg::SkMsgLink(_)
  5721. impl aya::programs::links::Link for aya::programs::sk_msg::SkMsgLink
  5722. pub type aya::programs::sk_msg::SkMsgLink::Id = aya::programs::sk_msg::SkMsgLinkId
  5723. pub fn aya::programs::sk_msg::SkMsgLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5724. pub fn aya::programs::sk_msg::SkMsgLink::id(&self) -> Self::Id
  5725. impl core::cmp::Eq for aya::programs::sk_msg::SkMsgLink
  5726. impl core::cmp::PartialEq for aya::programs::sk_msg::SkMsgLink
  5727. pub fn aya::programs::sk_msg::SkMsgLink::eq(&self, other: &Self) -> bool
  5728. impl core::convert::From<aya::programs::links::ProgAttachLink> for aya::programs::sk_msg::SkMsgLink
  5729. pub fn aya::programs::sk_msg::SkMsgLink::from(b: aya::programs::links::ProgAttachLink) -> aya::programs::sk_msg::SkMsgLink
  5730. impl core::convert::From<aya::programs::sk_msg::SkMsgLink> for aya::programs::links::ProgAttachLink
  5731. pub fn aya::programs::links::ProgAttachLink::from(w: aya::programs::sk_msg::SkMsgLink) -> aya::programs::links::ProgAttachLink
  5732. impl core::fmt::Debug for aya::programs::sk_msg::SkMsgLink
  5733. pub fn aya::programs::sk_msg::SkMsgLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5734. impl core::hash::Hash for aya::programs::sk_msg::SkMsgLink
  5735. pub fn aya::programs::sk_msg::SkMsgLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5736. impl core::ops::drop::Drop for aya::programs::sk_msg::SkMsgLink
  5737. pub fn aya::programs::sk_msg::SkMsgLink::drop(&mut self)
  5738. impl equivalent::Equivalent<aya::programs::sk_msg::SkMsgLink> for aya::programs::sk_msg::SkMsgLinkId
  5739. pub fn aya::programs::sk_msg::SkMsgLinkId::equivalent(&self, key: &aya::programs::sk_msg::SkMsgLink) -> bool
  5740. impl core::marker::Freeze for aya::programs::sk_msg::SkMsgLink
  5741. impl core::marker::Send for aya::programs::sk_msg::SkMsgLink
  5742. impl core::marker::Sync for aya::programs::sk_msg::SkMsgLink
  5743. impl core::marker::Unpin for aya::programs::sk_msg::SkMsgLink
  5744. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_msg::SkMsgLink
  5745. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_msg::SkMsgLink
  5746. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_msg::SkMsgLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5747. pub fn aya::programs::sk_msg::SkMsgLink::equivalent(&self, key: &K) -> bool
  5748. impl<T, U> core::convert::Into<U> for aya::programs::sk_msg::SkMsgLink where U: core::convert::From<T>
  5749. pub fn aya::programs::sk_msg::SkMsgLink::into(self) -> U
  5750. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_msg::SkMsgLink where U: core::convert::Into<T>
  5751. pub type aya::programs::sk_msg::SkMsgLink::Error = core::convert::Infallible
  5752. pub fn aya::programs::sk_msg::SkMsgLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5753. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_msg::SkMsgLink where U: core::convert::TryFrom<T>
  5754. pub type aya::programs::sk_msg::SkMsgLink::Error = <U as core::convert::TryFrom<T>>::Error
  5755. pub fn aya::programs::sk_msg::SkMsgLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5756. impl<T> core::any::Any for aya::programs::sk_msg::SkMsgLink where T: 'static + ?core::marker::Sized
  5757. pub fn aya::programs::sk_msg::SkMsgLink::type_id(&self) -> core::any::TypeId
  5758. impl<T> core::borrow::Borrow<T> for aya::programs::sk_msg::SkMsgLink where T: ?core::marker::Sized
  5759. pub fn aya::programs::sk_msg::SkMsgLink::borrow(&self) -> &T
  5760. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_msg::SkMsgLink where T: ?core::marker::Sized
  5761. pub fn aya::programs::sk_msg::SkMsgLink::borrow_mut(&mut self) -> &mut T
  5762. impl<T> core::convert::From<T> for aya::programs::sk_msg::SkMsgLink
  5763. pub fn aya::programs::sk_msg::SkMsgLink::from(t: T) -> T
  5764. pub struct aya::programs::sk_msg::SkMsgLinkId(_)
  5765. impl core::cmp::Eq for aya::programs::sk_msg::SkMsgLinkId
  5766. impl core::cmp::PartialEq for aya::programs::sk_msg::SkMsgLinkId
  5767. pub fn aya::programs::sk_msg::SkMsgLinkId::eq(&self, other: &aya::programs::sk_msg::SkMsgLinkId) -> bool
  5768. impl core::fmt::Debug for aya::programs::sk_msg::SkMsgLinkId
  5769. pub fn aya::programs::sk_msg::SkMsgLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5770. impl core::hash::Hash for aya::programs::sk_msg::SkMsgLinkId
  5771. pub fn aya::programs::sk_msg::SkMsgLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5772. impl core::marker::StructuralPartialEq for aya::programs::sk_msg::SkMsgLinkId
  5773. impl equivalent::Equivalent<aya::programs::sk_msg::SkMsgLink> for aya::programs::sk_msg::SkMsgLinkId
  5774. pub fn aya::programs::sk_msg::SkMsgLinkId::equivalent(&self, key: &aya::programs::sk_msg::SkMsgLink) -> bool
  5775. impl core::marker::Freeze for aya::programs::sk_msg::SkMsgLinkId
  5776. impl core::marker::Send for aya::programs::sk_msg::SkMsgLinkId
  5777. impl core::marker::Sync for aya::programs::sk_msg::SkMsgLinkId
  5778. impl core::marker::Unpin for aya::programs::sk_msg::SkMsgLinkId
  5779. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_msg::SkMsgLinkId
  5780. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_msg::SkMsgLinkId
  5781. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_msg::SkMsgLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5782. pub fn aya::programs::sk_msg::SkMsgLinkId::equivalent(&self, key: &K) -> bool
  5783. impl<T, U> core::convert::Into<U> for aya::programs::sk_msg::SkMsgLinkId where U: core::convert::From<T>
  5784. pub fn aya::programs::sk_msg::SkMsgLinkId::into(self) -> U
  5785. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_msg::SkMsgLinkId where U: core::convert::Into<T>
  5786. pub type aya::programs::sk_msg::SkMsgLinkId::Error = core::convert::Infallible
  5787. pub fn aya::programs::sk_msg::SkMsgLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5788. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_msg::SkMsgLinkId where U: core::convert::TryFrom<T>
  5789. pub type aya::programs::sk_msg::SkMsgLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5790. pub fn aya::programs::sk_msg::SkMsgLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5791. impl<T> core::any::Any for aya::programs::sk_msg::SkMsgLinkId where T: 'static + ?core::marker::Sized
  5792. pub fn aya::programs::sk_msg::SkMsgLinkId::type_id(&self) -> core::any::TypeId
  5793. impl<T> core::borrow::Borrow<T> for aya::programs::sk_msg::SkMsgLinkId where T: ?core::marker::Sized
  5794. pub fn aya::programs::sk_msg::SkMsgLinkId::borrow(&self) -> &T
  5795. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_msg::SkMsgLinkId where T: ?core::marker::Sized
  5796. pub fn aya::programs::sk_msg::SkMsgLinkId::borrow_mut(&mut self) -> &mut T
  5797. impl<T> core::convert::From<T> for aya::programs::sk_msg::SkMsgLinkId
  5798. pub fn aya::programs::sk_msg::SkMsgLinkId::from(t: T) -> T
  5799. pub mod aya::programs::sk_skb
  5800. pub enum aya::programs::sk_skb::SkSkbKind
  5801. pub aya::programs::sk_skb::SkSkbKind::StreamParser
  5802. pub aya::programs::sk_skb::SkSkbKind::StreamVerdict
  5803. impl core::clone::Clone for aya::programs::sk_skb::SkSkbKind
  5804. pub fn aya::programs::sk_skb::SkSkbKind::clone(&self) -> aya::programs::sk_skb::SkSkbKind
  5805. impl core::fmt::Debug for aya::programs::sk_skb::SkSkbKind
  5806. pub fn aya::programs::sk_skb::SkSkbKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5807. impl core::marker::Copy for aya::programs::sk_skb::SkSkbKind
  5808. impl core::marker::Freeze for aya::programs::sk_skb::SkSkbKind
  5809. impl core::marker::Send for aya::programs::sk_skb::SkSkbKind
  5810. impl core::marker::Sync for aya::programs::sk_skb::SkSkbKind
  5811. impl core::marker::Unpin for aya::programs::sk_skb::SkSkbKind
  5812. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkbKind
  5813. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkbKind
  5814. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::From<T>
  5815. pub fn aya::programs::sk_skb::SkSkbKind::into(self) -> U
  5816. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::Into<T>
  5817. pub type aya::programs::sk_skb::SkSkbKind::Error = core::convert::Infallible
  5818. pub fn aya::programs::sk_skb::SkSkbKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5819. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::TryFrom<T>
  5820. pub type aya::programs::sk_skb::SkSkbKind::Error = <U as core::convert::TryFrom<T>>::Error
  5821. pub fn aya::programs::sk_skb::SkSkbKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5822. impl<T> alloc::borrow::ToOwned for aya::programs::sk_skb::SkSkbKind where T: core::clone::Clone
  5823. pub type aya::programs::sk_skb::SkSkbKind::Owned = T
  5824. pub fn aya::programs::sk_skb::SkSkbKind::clone_into(&self, target: &mut T)
  5825. pub fn aya::programs::sk_skb::SkSkbKind::to_owned(&self) -> T
  5826. impl<T> core::any::Any for aya::programs::sk_skb::SkSkbKind where T: 'static + ?core::marker::Sized
  5827. pub fn aya::programs::sk_skb::SkSkbKind::type_id(&self) -> core::any::TypeId
  5828. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkbKind where T: ?core::marker::Sized
  5829. pub fn aya::programs::sk_skb::SkSkbKind::borrow(&self) -> &T
  5830. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkbKind where T: ?core::marker::Sized
  5831. pub fn aya::programs::sk_skb::SkSkbKind::borrow_mut(&mut self) -> &mut T
  5832. impl<T> core::clone::CloneToUninit for aya::programs::sk_skb::SkSkbKind where T: core::clone::Clone
  5833. pub unsafe fn aya::programs::sk_skb::SkSkbKind::clone_to_uninit(&self, dest: *mut u8)
  5834. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkbKind
  5835. pub fn aya::programs::sk_skb::SkSkbKind::from(t: T) -> T
  5836. pub struct aya::programs::sk_skb::SkSkb
  5837. impl aya::programs::sk_skb::SkSkb
  5838. pub const aya::programs::sk_skb::SkSkb::PROGRAM_TYPE: aya::programs::ProgramType
  5839. pub fn aya::programs::sk_skb::SkSkb::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<aya::programs::sk_skb::SkSkbLinkId, aya::programs::ProgramError>
  5840. pub fn aya::programs::sk_skb::SkSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::sk_skb::SkSkbKind) -> core::result::Result<Self, aya::programs::ProgramError>
  5841. pub fn aya::programs::sk_skb::SkSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5842. impl aya::programs::sk_skb::SkSkb
  5843. pub fn aya::programs::sk_skb::SkSkb::detach(&mut self, link_id: aya::programs::sk_skb::SkSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5844. pub fn aya::programs::sk_skb::SkSkb::take_link(&mut self, link_id: aya::programs::sk_skb::SkSkbLinkId) -> core::result::Result<aya::programs::sk_skb::SkSkbLink, aya::programs::ProgramError>
  5845. impl aya::programs::sk_skb::SkSkb
  5846. pub fn aya::programs::sk_skb::SkSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5847. impl aya::programs::sk_skb::SkSkb
  5848. pub fn aya::programs::sk_skb::SkSkb::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::sk_skb::SkSkbKind) -> core::result::Result<Self, aya::programs::ProgramError>
  5849. impl aya::programs::sk_skb::SkSkb
  5850. pub fn aya::programs::sk_skb::SkSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5851. impl aya::programs::sk_skb::SkSkb
  5852. pub fn aya::programs::sk_skb::SkSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5853. pub fn aya::programs::sk_skb::SkSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5854. impl aya::programs::sk_skb::SkSkb
  5855. pub fn aya::programs::sk_skb::SkSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5856. impl core::fmt::Debug for aya::programs::sk_skb::SkSkb
  5857. pub fn aya::programs::sk_skb::SkSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5858. impl core::ops::drop::Drop for aya::programs::sk_skb::SkSkb
  5859. pub fn aya::programs::sk_skb::SkSkb::drop(&mut self)
  5860. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_skb::SkSkb
  5861. pub type &'a aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  5862. pub fn &'a aya::programs::sk_skb::SkSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  5863. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_skb::SkSkb
  5864. pub type &'a mut aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  5865. pub fn &'a mut aya::programs::sk_skb::SkSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  5866. impl core::marker::Freeze for aya::programs::sk_skb::SkSkb
  5867. impl core::marker::Send for aya::programs::sk_skb::SkSkb
  5868. impl core::marker::Sync for aya::programs::sk_skb::SkSkb
  5869. impl core::marker::Unpin for aya::programs::sk_skb::SkSkb
  5870. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkb
  5871. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkb
  5872. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkb where U: core::convert::From<T>
  5873. pub fn aya::programs::sk_skb::SkSkb::into(self) -> U
  5874. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkb where U: core::convert::Into<T>
  5875. pub type aya::programs::sk_skb::SkSkb::Error = core::convert::Infallible
  5876. pub fn aya::programs::sk_skb::SkSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5877. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkb where U: core::convert::TryFrom<T>
  5878. pub type aya::programs::sk_skb::SkSkb::Error = <U as core::convert::TryFrom<T>>::Error
  5879. pub fn aya::programs::sk_skb::SkSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5880. impl<T> core::any::Any for aya::programs::sk_skb::SkSkb where T: 'static + ?core::marker::Sized
  5881. pub fn aya::programs::sk_skb::SkSkb::type_id(&self) -> core::any::TypeId
  5882. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkb where T: ?core::marker::Sized
  5883. pub fn aya::programs::sk_skb::SkSkb::borrow(&self) -> &T
  5884. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkb where T: ?core::marker::Sized
  5885. pub fn aya::programs::sk_skb::SkSkb::borrow_mut(&mut self) -> &mut T
  5886. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkb
  5887. pub fn aya::programs::sk_skb::SkSkb::from(t: T) -> T
  5888. pub struct aya::programs::sk_skb::SkSkbLink(_)
  5889. impl aya::programs::links::Link for aya::programs::sk_skb::SkSkbLink
  5890. pub type aya::programs::sk_skb::SkSkbLink::Id = aya::programs::sk_skb::SkSkbLinkId
  5891. pub fn aya::programs::sk_skb::SkSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5892. pub fn aya::programs::sk_skb::SkSkbLink::id(&self) -> Self::Id
  5893. impl core::cmp::Eq for aya::programs::sk_skb::SkSkbLink
  5894. impl core::cmp::PartialEq for aya::programs::sk_skb::SkSkbLink
  5895. pub fn aya::programs::sk_skb::SkSkbLink::eq(&self, other: &Self) -> bool
  5896. impl core::convert::From<aya::programs::links::ProgAttachLink> for aya::programs::sk_skb::SkSkbLink
  5897. pub fn aya::programs::sk_skb::SkSkbLink::from(b: aya::programs::links::ProgAttachLink) -> aya::programs::sk_skb::SkSkbLink
  5898. impl core::convert::From<aya::programs::sk_skb::SkSkbLink> for aya::programs::links::ProgAttachLink
  5899. pub fn aya::programs::links::ProgAttachLink::from(w: aya::programs::sk_skb::SkSkbLink) -> aya::programs::links::ProgAttachLink
  5900. impl core::fmt::Debug for aya::programs::sk_skb::SkSkbLink
  5901. pub fn aya::programs::sk_skb::SkSkbLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5902. impl core::hash::Hash for aya::programs::sk_skb::SkSkbLink
  5903. pub fn aya::programs::sk_skb::SkSkbLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5904. impl core::ops::drop::Drop for aya::programs::sk_skb::SkSkbLink
  5905. pub fn aya::programs::sk_skb::SkSkbLink::drop(&mut self)
  5906. impl equivalent::Equivalent<aya::programs::sk_skb::SkSkbLink> for aya::programs::sk_skb::SkSkbLinkId
  5907. pub fn aya::programs::sk_skb::SkSkbLinkId::equivalent(&self, key: &aya::programs::sk_skb::SkSkbLink) -> bool
  5908. impl core::marker::Freeze for aya::programs::sk_skb::SkSkbLink
  5909. impl core::marker::Send for aya::programs::sk_skb::SkSkbLink
  5910. impl core::marker::Sync for aya::programs::sk_skb::SkSkbLink
  5911. impl core::marker::Unpin for aya::programs::sk_skb::SkSkbLink
  5912. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkbLink
  5913. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkbLink
  5914. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_skb::SkSkbLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5915. pub fn aya::programs::sk_skb::SkSkbLink::equivalent(&self, key: &K) -> bool
  5916. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkbLink where U: core::convert::From<T>
  5917. pub fn aya::programs::sk_skb::SkSkbLink::into(self) -> U
  5918. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkbLink where U: core::convert::Into<T>
  5919. pub type aya::programs::sk_skb::SkSkbLink::Error = core::convert::Infallible
  5920. pub fn aya::programs::sk_skb::SkSkbLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5921. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkbLink where U: core::convert::TryFrom<T>
  5922. pub type aya::programs::sk_skb::SkSkbLink::Error = <U as core::convert::TryFrom<T>>::Error
  5923. pub fn aya::programs::sk_skb::SkSkbLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5924. impl<T> core::any::Any for aya::programs::sk_skb::SkSkbLink where T: 'static + ?core::marker::Sized
  5925. pub fn aya::programs::sk_skb::SkSkbLink::type_id(&self) -> core::any::TypeId
  5926. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkbLink where T: ?core::marker::Sized
  5927. pub fn aya::programs::sk_skb::SkSkbLink::borrow(&self) -> &T
  5928. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkbLink where T: ?core::marker::Sized
  5929. pub fn aya::programs::sk_skb::SkSkbLink::borrow_mut(&mut self) -> &mut T
  5930. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkbLink
  5931. pub fn aya::programs::sk_skb::SkSkbLink::from(t: T) -> T
  5932. pub struct aya::programs::sk_skb::SkSkbLinkId(_)
  5933. impl core::cmp::Eq for aya::programs::sk_skb::SkSkbLinkId
  5934. impl core::cmp::PartialEq for aya::programs::sk_skb::SkSkbLinkId
  5935. pub fn aya::programs::sk_skb::SkSkbLinkId::eq(&self, other: &aya::programs::sk_skb::SkSkbLinkId) -> bool
  5936. impl core::fmt::Debug for aya::programs::sk_skb::SkSkbLinkId
  5937. pub fn aya::programs::sk_skb::SkSkbLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5938. impl core::hash::Hash for aya::programs::sk_skb::SkSkbLinkId
  5939. pub fn aya::programs::sk_skb::SkSkbLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5940. impl core::marker::StructuralPartialEq for aya::programs::sk_skb::SkSkbLinkId
  5941. impl equivalent::Equivalent<aya::programs::sk_skb::SkSkbLink> for aya::programs::sk_skb::SkSkbLinkId
  5942. pub fn aya::programs::sk_skb::SkSkbLinkId::equivalent(&self, key: &aya::programs::sk_skb::SkSkbLink) -> bool
  5943. impl core::marker::Freeze for aya::programs::sk_skb::SkSkbLinkId
  5944. impl core::marker::Send for aya::programs::sk_skb::SkSkbLinkId
  5945. impl core::marker::Sync for aya::programs::sk_skb::SkSkbLinkId
  5946. impl core::marker::Unpin for aya::programs::sk_skb::SkSkbLinkId
  5947. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkbLinkId
  5948. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkbLinkId
  5949. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_skb::SkSkbLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5950. pub fn aya::programs::sk_skb::SkSkbLinkId::equivalent(&self, key: &K) -> bool
  5951. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkbLinkId where U: core::convert::From<T>
  5952. pub fn aya::programs::sk_skb::SkSkbLinkId::into(self) -> U
  5953. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkbLinkId where U: core::convert::Into<T>
  5954. pub type aya::programs::sk_skb::SkSkbLinkId::Error = core::convert::Infallible
  5955. pub fn aya::programs::sk_skb::SkSkbLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5956. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkbLinkId where U: core::convert::TryFrom<T>
  5957. pub type aya::programs::sk_skb::SkSkbLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5958. pub fn aya::programs::sk_skb::SkSkbLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5959. impl<T> core::any::Any for aya::programs::sk_skb::SkSkbLinkId where T: 'static + ?core::marker::Sized
  5960. pub fn aya::programs::sk_skb::SkSkbLinkId::type_id(&self) -> core::any::TypeId
  5961. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkbLinkId where T: ?core::marker::Sized
  5962. pub fn aya::programs::sk_skb::SkSkbLinkId::borrow(&self) -> &T
  5963. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkbLinkId where T: ?core::marker::Sized
  5964. pub fn aya::programs::sk_skb::SkSkbLinkId::borrow_mut(&mut self) -> &mut T
  5965. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkbLinkId
  5966. pub fn aya::programs::sk_skb::SkSkbLinkId::from(t: T) -> T
  5967. pub mod aya::programs::sock_ops
  5968. pub struct aya::programs::sock_ops::SockOps
  5969. impl aya::programs::sock_ops::SockOps
  5970. pub const aya::programs::sock_ops::SockOps::PROGRAM_TYPE: aya::programs::ProgramType
  5971. pub fn aya::programs::sock_ops::SockOps::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::sock_ops::SockOpsLinkId, aya::programs::ProgramError>
  5972. pub fn aya::programs::sock_ops::SockOps::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5973. impl aya::programs::sock_ops::SockOps
  5974. pub fn aya::programs::sock_ops::SockOps::detach(&mut self, link_id: aya::programs::sock_ops::SockOpsLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5975. pub fn aya::programs::sock_ops::SockOps::take_link(&mut self, link_id: aya::programs::sock_ops::SockOpsLinkId) -> core::result::Result<aya::programs::sock_ops::SockOpsLink, aya::programs::ProgramError>
  5976. impl aya::programs::sock_ops::SockOps
  5977. pub fn aya::programs::sock_ops::SockOps::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5978. impl aya::programs::sock_ops::SockOps
  5979. pub fn aya::programs::sock_ops::SockOps::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  5980. impl aya::programs::sock_ops::SockOps
  5981. pub fn aya::programs::sock_ops::SockOps::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  5982. impl aya::programs::sock_ops::SockOps
  5983. pub fn aya::programs::sock_ops::SockOps::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5984. impl aya::programs::sock_ops::SockOps
  5985. pub fn aya::programs::sock_ops::SockOps::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5986. pub fn aya::programs::sock_ops::SockOps::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5987. impl aya::programs::sock_ops::SockOps
  5988. pub fn aya::programs::sock_ops::SockOps::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5989. impl core::fmt::Debug for aya::programs::sock_ops::SockOps
  5990. pub fn aya::programs::sock_ops::SockOps::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5991. impl core::ops::drop::Drop for aya::programs::sock_ops::SockOps
  5992. pub fn aya::programs::sock_ops::SockOps::drop(&mut self)
  5993. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sock_ops::SockOps
  5994. pub type &'a aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  5995. pub fn &'a aya::programs::sock_ops::SockOps::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  5996. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sock_ops::SockOps
  5997. pub type &'a mut aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  5998. pub fn &'a mut aya::programs::sock_ops::SockOps::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  5999. impl core::marker::Freeze for aya::programs::sock_ops::SockOps
  6000. impl core::marker::Send for aya::programs::sock_ops::SockOps
  6001. impl core::marker::Sync for aya::programs::sock_ops::SockOps
  6002. impl core::marker::Unpin for aya::programs::sock_ops::SockOps
  6003. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sock_ops::SockOps
  6004. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sock_ops::SockOps
  6005. impl<T, U> core::convert::Into<U> for aya::programs::sock_ops::SockOps where U: core::convert::From<T>
  6006. pub fn aya::programs::sock_ops::SockOps::into(self) -> U
  6007. impl<T, U> core::convert::TryFrom<U> for aya::programs::sock_ops::SockOps where U: core::convert::Into<T>
  6008. pub type aya::programs::sock_ops::SockOps::Error = core::convert::Infallible
  6009. pub fn aya::programs::sock_ops::SockOps::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6010. impl<T, U> core::convert::TryInto<U> for aya::programs::sock_ops::SockOps where U: core::convert::TryFrom<T>
  6011. pub type aya::programs::sock_ops::SockOps::Error = <U as core::convert::TryFrom<T>>::Error
  6012. pub fn aya::programs::sock_ops::SockOps::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6013. impl<T> core::any::Any for aya::programs::sock_ops::SockOps where T: 'static + ?core::marker::Sized
  6014. pub fn aya::programs::sock_ops::SockOps::type_id(&self) -> core::any::TypeId
  6015. impl<T> core::borrow::Borrow<T> for aya::programs::sock_ops::SockOps where T: ?core::marker::Sized
  6016. pub fn aya::programs::sock_ops::SockOps::borrow(&self) -> &T
  6017. impl<T> core::borrow::BorrowMut<T> for aya::programs::sock_ops::SockOps where T: ?core::marker::Sized
  6018. pub fn aya::programs::sock_ops::SockOps::borrow_mut(&mut self) -> &mut T
  6019. impl<T> core::convert::From<T> for aya::programs::sock_ops::SockOps
  6020. pub fn aya::programs::sock_ops::SockOps::from(t: T) -> T
  6021. pub struct aya::programs::sock_ops::SockOpsLink(_)
  6022. impl aya::programs::links::Link for aya::programs::sock_ops::SockOpsLink
  6023. pub type aya::programs::sock_ops::SockOpsLink::Id = aya::programs::sock_ops::SockOpsLinkId
  6024. pub fn aya::programs::sock_ops::SockOpsLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6025. pub fn aya::programs::sock_ops::SockOpsLink::id(&self) -> Self::Id
  6026. impl core::cmp::Eq for aya::programs::sock_ops::SockOpsLink
  6027. impl core::cmp::PartialEq for aya::programs::sock_ops::SockOpsLink
  6028. pub fn aya::programs::sock_ops::SockOpsLink::eq(&self, other: &Self) -> bool
  6029. impl core::fmt::Debug for aya::programs::sock_ops::SockOpsLink
  6030. pub fn aya::programs::sock_ops::SockOpsLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6031. impl core::hash::Hash for aya::programs::sock_ops::SockOpsLink
  6032. pub fn aya::programs::sock_ops::SockOpsLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6033. impl core::ops::drop::Drop for aya::programs::sock_ops::SockOpsLink
  6034. pub fn aya::programs::sock_ops::SockOpsLink::drop(&mut self)
  6035. impl equivalent::Equivalent<aya::programs::sock_ops::SockOpsLink> for aya::programs::sock_ops::SockOpsLinkId
  6036. pub fn aya::programs::sock_ops::SockOpsLinkId::equivalent(&self, key: &aya::programs::sock_ops::SockOpsLink) -> bool
  6037. impl core::marker::Freeze for aya::programs::sock_ops::SockOpsLink
  6038. impl core::marker::Send for aya::programs::sock_ops::SockOpsLink
  6039. impl core::marker::Sync for aya::programs::sock_ops::SockOpsLink
  6040. impl core::marker::Unpin for aya::programs::sock_ops::SockOpsLink
  6041. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sock_ops::SockOpsLink
  6042. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sock_ops::SockOpsLink
  6043. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sock_ops::SockOpsLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6044. pub fn aya::programs::sock_ops::SockOpsLink::equivalent(&self, key: &K) -> bool
  6045. impl<T, U> core::convert::Into<U> for aya::programs::sock_ops::SockOpsLink where U: core::convert::From<T>
  6046. pub fn aya::programs::sock_ops::SockOpsLink::into(self) -> U
  6047. impl<T, U> core::convert::TryFrom<U> for aya::programs::sock_ops::SockOpsLink where U: core::convert::Into<T>
  6048. pub type aya::programs::sock_ops::SockOpsLink::Error = core::convert::Infallible
  6049. pub fn aya::programs::sock_ops::SockOpsLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6050. impl<T, U> core::convert::TryInto<U> for aya::programs::sock_ops::SockOpsLink where U: core::convert::TryFrom<T>
  6051. pub type aya::programs::sock_ops::SockOpsLink::Error = <U as core::convert::TryFrom<T>>::Error
  6052. pub fn aya::programs::sock_ops::SockOpsLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6053. impl<T> core::any::Any for aya::programs::sock_ops::SockOpsLink where T: 'static + ?core::marker::Sized
  6054. pub fn aya::programs::sock_ops::SockOpsLink::type_id(&self) -> core::any::TypeId
  6055. impl<T> core::borrow::Borrow<T> for aya::programs::sock_ops::SockOpsLink where T: ?core::marker::Sized
  6056. pub fn aya::programs::sock_ops::SockOpsLink::borrow(&self) -> &T
  6057. impl<T> core::borrow::BorrowMut<T> for aya::programs::sock_ops::SockOpsLink where T: ?core::marker::Sized
  6058. pub fn aya::programs::sock_ops::SockOpsLink::borrow_mut(&mut self) -> &mut T
  6059. impl<T> core::convert::From<T> for aya::programs::sock_ops::SockOpsLink
  6060. pub fn aya::programs::sock_ops::SockOpsLink::from(t: T) -> T
  6061. pub struct aya::programs::sock_ops::SockOpsLinkId(_)
  6062. impl core::cmp::Eq for aya::programs::sock_ops::SockOpsLinkId
  6063. impl core::cmp::PartialEq for aya::programs::sock_ops::SockOpsLinkId
  6064. pub fn aya::programs::sock_ops::SockOpsLinkId::eq(&self, other: &aya::programs::sock_ops::SockOpsLinkId) -> bool
  6065. impl core::fmt::Debug for aya::programs::sock_ops::SockOpsLinkId
  6066. pub fn aya::programs::sock_ops::SockOpsLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6067. impl core::hash::Hash for aya::programs::sock_ops::SockOpsLinkId
  6068. pub fn aya::programs::sock_ops::SockOpsLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6069. impl core::marker::StructuralPartialEq for aya::programs::sock_ops::SockOpsLinkId
  6070. impl equivalent::Equivalent<aya::programs::sock_ops::SockOpsLink> for aya::programs::sock_ops::SockOpsLinkId
  6071. pub fn aya::programs::sock_ops::SockOpsLinkId::equivalent(&self, key: &aya::programs::sock_ops::SockOpsLink) -> bool
  6072. impl core::marker::Freeze for aya::programs::sock_ops::SockOpsLinkId
  6073. impl core::marker::Send for aya::programs::sock_ops::SockOpsLinkId
  6074. impl core::marker::Sync for aya::programs::sock_ops::SockOpsLinkId
  6075. impl core::marker::Unpin for aya::programs::sock_ops::SockOpsLinkId
  6076. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sock_ops::SockOpsLinkId
  6077. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sock_ops::SockOpsLinkId
  6078. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sock_ops::SockOpsLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6079. pub fn aya::programs::sock_ops::SockOpsLinkId::equivalent(&self, key: &K) -> bool
  6080. impl<T, U> core::convert::Into<U> for aya::programs::sock_ops::SockOpsLinkId where U: core::convert::From<T>
  6081. pub fn aya::programs::sock_ops::SockOpsLinkId::into(self) -> U
  6082. impl<T, U> core::convert::TryFrom<U> for aya::programs::sock_ops::SockOpsLinkId where U: core::convert::Into<T>
  6083. pub type aya::programs::sock_ops::SockOpsLinkId::Error = core::convert::Infallible
  6084. pub fn aya::programs::sock_ops::SockOpsLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6085. impl<T, U> core::convert::TryInto<U> for aya::programs::sock_ops::SockOpsLinkId where U: core::convert::TryFrom<T>
  6086. pub type aya::programs::sock_ops::SockOpsLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6087. pub fn aya::programs::sock_ops::SockOpsLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6088. impl<T> core::any::Any for aya::programs::sock_ops::SockOpsLinkId where T: 'static + ?core::marker::Sized
  6089. pub fn aya::programs::sock_ops::SockOpsLinkId::type_id(&self) -> core::any::TypeId
  6090. impl<T> core::borrow::Borrow<T> for aya::programs::sock_ops::SockOpsLinkId where T: ?core::marker::Sized
  6091. pub fn aya::programs::sock_ops::SockOpsLinkId::borrow(&self) -> &T
  6092. impl<T> core::borrow::BorrowMut<T> for aya::programs::sock_ops::SockOpsLinkId where T: ?core::marker::Sized
  6093. pub fn aya::programs::sock_ops::SockOpsLinkId::borrow_mut(&mut self) -> &mut T
  6094. impl<T> core::convert::From<T> for aya::programs::sock_ops::SockOpsLinkId
  6095. pub fn aya::programs::sock_ops::SockOpsLinkId::from(t: T) -> T
  6096. pub mod aya::programs::socket_filter
  6097. pub enum aya::programs::socket_filter::SocketFilterError
  6098. pub aya::programs::socket_filter::SocketFilterError::SoAttachEbpfError
  6099. pub aya::programs::socket_filter::SocketFilterError::SoAttachEbpfError::io_error: std::io::error::Error
  6100. impl core::convert::From<aya::programs::socket_filter::SocketFilterError> for aya::programs::ProgramError
  6101. pub fn aya::programs::ProgramError::from(source: aya::programs::socket_filter::SocketFilterError) -> Self
  6102. impl core::error::Error for aya::programs::socket_filter::SocketFilterError
  6103. pub fn aya::programs::socket_filter::SocketFilterError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6104. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilterError
  6105. pub fn aya::programs::socket_filter::SocketFilterError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6106. impl core::fmt::Display for aya::programs::socket_filter::SocketFilterError
  6107. pub fn aya::programs::socket_filter::SocketFilterError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6108. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilterError
  6109. impl core::marker::Send for aya::programs::socket_filter::SocketFilterError
  6110. impl core::marker::Sync for aya::programs::socket_filter::SocketFilterError
  6111. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilterError
  6112. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilterError
  6113. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilterError
  6114. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::From<T>
  6115. pub fn aya::programs::socket_filter::SocketFilterError::into(self) -> U
  6116. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::Into<T>
  6117. pub type aya::programs::socket_filter::SocketFilterError::Error = core::convert::Infallible
  6118. pub fn aya::programs::socket_filter::SocketFilterError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6119. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::TryFrom<T>
  6120. pub type aya::programs::socket_filter::SocketFilterError::Error = <U as core::convert::TryFrom<T>>::Error
  6121. pub fn aya::programs::socket_filter::SocketFilterError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6122. impl<T> alloc::string::ToString for aya::programs::socket_filter::SocketFilterError where T: core::fmt::Display + ?core::marker::Sized
  6123. pub fn aya::programs::socket_filter::SocketFilterError::to_string(&self) -> alloc::string::String
  6124. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilterError where T: 'static + ?core::marker::Sized
  6125. pub fn aya::programs::socket_filter::SocketFilterError::type_id(&self) -> core::any::TypeId
  6126. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilterError where T: ?core::marker::Sized
  6127. pub fn aya::programs::socket_filter::SocketFilterError::borrow(&self) -> &T
  6128. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilterError where T: ?core::marker::Sized
  6129. pub fn aya::programs::socket_filter::SocketFilterError::borrow_mut(&mut self) -> &mut T
  6130. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilterError
  6131. pub fn aya::programs::socket_filter::SocketFilterError::from(t: T) -> T
  6132. pub struct aya::programs::socket_filter::SocketFilter
  6133. impl aya::programs::socket_filter::SocketFilter
  6134. pub const aya::programs::socket_filter::SocketFilter::PROGRAM_TYPE: aya::programs::ProgramType
  6135. pub fn aya::programs::socket_filter::SocketFilter::attach<T: std::os::fd::owned::AsFd>(&mut self, socket: T) -> core::result::Result<aya::programs::socket_filter::SocketFilterLinkId, aya::programs::ProgramError>
  6136. pub fn aya::programs::socket_filter::SocketFilter::detach(&mut self, link_id: aya::programs::socket_filter::SocketFilterLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6137. pub fn aya::programs::socket_filter::SocketFilter::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6138. pub fn aya::programs::socket_filter::SocketFilter::take_link(&mut self, link_id: aya::programs::socket_filter::SocketFilterLinkId) -> core::result::Result<aya::programs::socket_filter::SocketFilterLink, aya::programs::ProgramError>
  6139. impl aya::programs::socket_filter::SocketFilter
  6140. pub fn aya::programs::socket_filter::SocketFilter::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6141. impl aya::programs::socket_filter::SocketFilter
  6142. pub fn aya::programs::socket_filter::SocketFilter::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6143. impl aya::programs::socket_filter::SocketFilter
  6144. pub fn aya::programs::socket_filter::SocketFilter::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6145. impl aya::programs::socket_filter::SocketFilter
  6146. pub fn aya::programs::socket_filter::SocketFilter::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6147. pub fn aya::programs::socket_filter::SocketFilter::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6148. impl aya::programs::socket_filter::SocketFilter
  6149. pub fn aya::programs::socket_filter::SocketFilter::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6150. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilter
  6151. pub fn aya::programs::socket_filter::SocketFilter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6152. impl core::ops::drop::Drop for aya::programs::socket_filter::SocketFilter
  6153. pub fn aya::programs::socket_filter::SocketFilter::drop(&mut self)
  6154. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::socket_filter::SocketFilter
  6155. pub type &'a aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  6156. pub fn &'a aya::programs::socket_filter::SocketFilter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  6157. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::socket_filter::SocketFilter
  6158. pub type &'a mut aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  6159. pub fn &'a mut aya::programs::socket_filter::SocketFilter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  6160. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilter
  6161. impl core::marker::Send for aya::programs::socket_filter::SocketFilter
  6162. impl core::marker::Sync for aya::programs::socket_filter::SocketFilter
  6163. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilter
  6164. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilter
  6165. impl core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilter
  6166. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::From<T>
  6167. pub fn aya::programs::socket_filter::SocketFilter::into(self) -> U
  6168. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::Into<T>
  6169. pub type aya::programs::socket_filter::SocketFilter::Error = core::convert::Infallible
  6170. pub fn aya::programs::socket_filter::SocketFilter::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6171. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::TryFrom<T>
  6172. pub type aya::programs::socket_filter::SocketFilter::Error = <U as core::convert::TryFrom<T>>::Error
  6173. pub fn aya::programs::socket_filter::SocketFilter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6174. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilter where T: 'static + ?core::marker::Sized
  6175. pub fn aya::programs::socket_filter::SocketFilter::type_id(&self) -> core::any::TypeId
  6176. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilter where T: ?core::marker::Sized
  6177. pub fn aya::programs::socket_filter::SocketFilter::borrow(&self) -> &T
  6178. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilter where T: ?core::marker::Sized
  6179. pub fn aya::programs::socket_filter::SocketFilter::borrow_mut(&mut self) -> &mut T
  6180. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilter
  6181. pub fn aya::programs::socket_filter::SocketFilter::from(t: T) -> T
  6182. pub struct aya::programs::socket_filter::SocketFilterLink
  6183. impl aya::programs::links::Link for aya::programs::socket_filter::SocketFilterLink
  6184. pub type aya::programs::socket_filter::SocketFilterLink::Id = aya::programs::socket_filter::SocketFilterLinkId
  6185. pub fn aya::programs::socket_filter::SocketFilterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6186. pub fn aya::programs::socket_filter::SocketFilterLink::id(&self) -> Self::Id
  6187. impl core::cmp::Eq for aya::programs::socket_filter::SocketFilterLink
  6188. impl core::cmp::PartialEq for aya::programs::socket_filter::SocketFilterLink
  6189. pub fn aya::programs::socket_filter::SocketFilterLink::eq(&self, other: &Self) -> bool
  6190. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilterLink
  6191. pub fn aya::programs::socket_filter::SocketFilterLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6192. impl core::hash::Hash for aya::programs::socket_filter::SocketFilterLink
  6193. pub fn aya::programs::socket_filter::SocketFilterLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6194. impl equivalent::Equivalent<aya::programs::socket_filter::SocketFilterLink> for aya::programs::socket_filter::SocketFilterLinkId
  6195. pub fn aya::programs::socket_filter::SocketFilterLinkId::equivalent(&self, key: &aya::programs::socket_filter::SocketFilterLink) -> bool
  6196. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilterLink
  6197. impl core::marker::Send for aya::programs::socket_filter::SocketFilterLink
  6198. impl core::marker::Sync for aya::programs::socket_filter::SocketFilterLink
  6199. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilterLink
  6200. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilterLink
  6201. impl core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilterLink
  6202. impl<Q, K> equivalent::Equivalent<K> for aya::programs::socket_filter::SocketFilterLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6203. pub fn aya::programs::socket_filter::SocketFilterLink::equivalent(&self, key: &K) -> bool
  6204. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilterLink where U: core::convert::From<T>
  6205. pub fn aya::programs::socket_filter::SocketFilterLink::into(self) -> U
  6206. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilterLink where U: core::convert::Into<T>
  6207. pub type aya::programs::socket_filter::SocketFilterLink::Error = core::convert::Infallible
  6208. pub fn aya::programs::socket_filter::SocketFilterLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6209. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilterLink where U: core::convert::TryFrom<T>
  6210. pub type aya::programs::socket_filter::SocketFilterLink::Error = <U as core::convert::TryFrom<T>>::Error
  6211. pub fn aya::programs::socket_filter::SocketFilterLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6212. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilterLink where T: 'static + ?core::marker::Sized
  6213. pub fn aya::programs::socket_filter::SocketFilterLink::type_id(&self) -> core::any::TypeId
  6214. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilterLink where T: ?core::marker::Sized
  6215. pub fn aya::programs::socket_filter::SocketFilterLink::borrow(&self) -> &T
  6216. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilterLink where T: ?core::marker::Sized
  6217. pub fn aya::programs::socket_filter::SocketFilterLink::borrow_mut(&mut self) -> &mut T
  6218. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilterLink
  6219. pub fn aya::programs::socket_filter::SocketFilterLink::from(t: T) -> T
  6220. pub struct aya::programs::socket_filter::SocketFilterLinkId(_, _)
  6221. impl core::cmp::Eq for aya::programs::socket_filter::SocketFilterLinkId
  6222. impl core::cmp::PartialEq for aya::programs::socket_filter::SocketFilterLinkId
  6223. pub fn aya::programs::socket_filter::SocketFilterLinkId::eq(&self, other: &aya::programs::socket_filter::SocketFilterLinkId) -> bool
  6224. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilterLinkId
  6225. pub fn aya::programs::socket_filter::SocketFilterLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6226. impl core::hash::Hash for aya::programs::socket_filter::SocketFilterLinkId
  6227. pub fn aya::programs::socket_filter::SocketFilterLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6228. impl core::marker::StructuralPartialEq for aya::programs::socket_filter::SocketFilterLinkId
  6229. impl equivalent::Equivalent<aya::programs::socket_filter::SocketFilterLink> for aya::programs::socket_filter::SocketFilterLinkId
  6230. pub fn aya::programs::socket_filter::SocketFilterLinkId::equivalent(&self, key: &aya::programs::socket_filter::SocketFilterLink) -> bool
  6231. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilterLinkId
  6232. impl core::marker::Send for aya::programs::socket_filter::SocketFilterLinkId
  6233. impl core::marker::Sync for aya::programs::socket_filter::SocketFilterLinkId
  6234. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilterLinkId
  6235. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilterLinkId
  6236. impl core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilterLinkId
  6237. impl<Q, K> equivalent::Equivalent<K> for aya::programs::socket_filter::SocketFilterLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6238. pub fn aya::programs::socket_filter::SocketFilterLinkId::equivalent(&self, key: &K) -> bool
  6239. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilterLinkId where U: core::convert::From<T>
  6240. pub fn aya::programs::socket_filter::SocketFilterLinkId::into(self) -> U
  6241. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilterLinkId where U: core::convert::Into<T>
  6242. pub type aya::programs::socket_filter::SocketFilterLinkId::Error = core::convert::Infallible
  6243. pub fn aya::programs::socket_filter::SocketFilterLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6244. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilterLinkId where U: core::convert::TryFrom<T>
  6245. pub type aya::programs::socket_filter::SocketFilterLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6246. pub fn aya::programs::socket_filter::SocketFilterLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6247. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilterLinkId where T: 'static + ?core::marker::Sized
  6248. pub fn aya::programs::socket_filter::SocketFilterLinkId::type_id(&self) -> core::any::TypeId
  6249. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilterLinkId where T: ?core::marker::Sized
  6250. pub fn aya::programs::socket_filter::SocketFilterLinkId::borrow(&self) -> &T
  6251. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilterLinkId where T: ?core::marker::Sized
  6252. pub fn aya::programs::socket_filter::SocketFilterLinkId::borrow_mut(&mut self) -> &mut T
  6253. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilterLinkId
  6254. pub fn aya::programs::socket_filter::SocketFilterLinkId::from(t: T) -> T
  6255. pub mod aya::programs::tc
  6256. pub enum aya::programs::tc::TcAttachOptions
  6257. pub aya::programs::tc::TcAttachOptions::Netlink(aya::programs::tc::NlOptions)
  6258. pub aya::programs::tc::TcAttachOptions::TcxOrder(aya::programs::links::LinkOrder)
  6259. impl core::fmt::Debug for aya::programs::tc::TcAttachOptions
  6260. pub fn aya::programs::tc::TcAttachOptions::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6261. impl core::marker::Freeze for aya::programs::tc::TcAttachOptions
  6262. impl core::marker::Send for aya::programs::tc::TcAttachOptions
  6263. impl core::marker::Sync for aya::programs::tc::TcAttachOptions
  6264. impl core::marker::Unpin for aya::programs::tc::TcAttachOptions
  6265. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcAttachOptions
  6266. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcAttachOptions
  6267. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcAttachOptions where U: core::convert::From<T>
  6268. pub fn aya::programs::tc::TcAttachOptions::into(self) -> U
  6269. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcAttachOptions where U: core::convert::Into<T>
  6270. pub type aya::programs::tc::TcAttachOptions::Error = core::convert::Infallible
  6271. pub fn aya::programs::tc::TcAttachOptions::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6272. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcAttachOptions where U: core::convert::TryFrom<T>
  6273. pub type aya::programs::tc::TcAttachOptions::Error = <U as core::convert::TryFrom<T>>::Error
  6274. pub fn aya::programs::tc::TcAttachOptions::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6275. impl<T> core::any::Any for aya::programs::tc::TcAttachOptions where T: 'static + ?core::marker::Sized
  6276. pub fn aya::programs::tc::TcAttachOptions::type_id(&self) -> core::any::TypeId
  6277. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcAttachOptions where T: ?core::marker::Sized
  6278. pub fn aya::programs::tc::TcAttachOptions::borrow(&self) -> &T
  6279. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcAttachOptions where T: ?core::marker::Sized
  6280. pub fn aya::programs::tc::TcAttachOptions::borrow_mut(&mut self) -> &mut T
  6281. impl<T> core::convert::From<T> for aya::programs::tc::TcAttachOptions
  6282. pub fn aya::programs::tc::TcAttachOptions::from(t: T) -> T
  6283. pub enum aya::programs::tc::TcAttachType
  6284. pub aya::programs::tc::TcAttachType::Custom(u32)
  6285. pub aya::programs::tc::TcAttachType::Egress
  6286. pub aya::programs::tc::TcAttachType::Ingress
  6287. impl core::clone::Clone for aya::programs::tc::TcAttachType
  6288. pub fn aya::programs::tc::TcAttachType::clone(&self) -> aya::programs::tc::TcAttachType
  6289. impl core::cmp::Eq for aya::programs::tc::TcAttachType
  6290. impl core::cmp::PartialEq for aya::programs::tc::TcAttachType
  6291. pub fn aya::programs::tc::TcAttachType::eq(&self, other: &aya::programs::tc::TcAttachType) -> bool
  6292. impl core::fmt::Debug for aya::programs::tc::TcAttachType
  6293. pub fn aya::programs::tc::TcAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6294. impl core::hash::Hash for aya::programs::tc::TcAttachType
  6295. pub fn aya::programs::tc::TcAttachType::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6296. impl core::marker::Copy for aya::programs::tc::TcAttachType
  6297. impl core::marker::StructuralPartialEq for aya::programs::tc::TcAttachType
  6298. impl core::marker::Freeze for aya::programs::tc::TcAttachType
  6299. impl core::marker::Send for aya::programs::tc::TcAttachType
  6300. impl core::marker::Sync for aya::programs::tc::TcAttachType
  6301. impl core::marker::Unpin for aya::programs::tc::TcAttachType
  6302. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcAttachType
  6303. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcAttachType
  6304. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::TcAttachType where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6305. pub fn aya::programs::tc::TcAttachType::equivalent(&self, key: &K) -> bool
  6306. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcAttachType where U: core::convert::From<T>
  6307. pub fn aya::programs::tc::TcAttachType::into(self) -> U
  6308. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcAttachType where U: core::convert::Into<T>
  6309. pub type aya::programs::tc::TcAttachType::Error = core::convert::Infallible
  6310. pub fn aya::programs::tc::TcAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6311. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcAttachType where U: core::convert::TryFrom<T>
  6312. pub type aya::programs::tc::TcAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  6313. pub fn aya::programs::tc::TcAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6314. impl<T> alloc::borrow::ToOwned for aya::programs::tc::TcAttachType where T: core::clone::Clone
  6315. pub type aya::programs::tc::TcAttachType::Owned = T
  6316. pub fn aya::programs::tc::TcAttachType::clone_into(&self, target: &mut T)
  6317. pub fn aya::programs::tc::TcAttachType::to_owned(&self) -> T
  6318. impl<T> core::any::Any for aya::programs::tc::TcAttachType where T: 'static + ?core::marker::Sized
  6319. pub fn aya::programs::tc::TcAttachType::type_id(&self) -> core::any::TypeId
  6320. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcAttachType where T: ?core::marker::Sized
  6321. pub fn aya::programs::tc::TcAttachType::borrow(&self) -> &T
  6322. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcAttachType where T: ?core::marker::Sized
  6323. pub fn aya::programs::tc::TcAttachType::borrow_mut(&mut self) -> &mut T
  6324. impl<T> core::clone::CloneToUninit for aya::programs::tc::TcAttachType where T: core::clone::Clone
  6325. pub unsafe fn aya::programs::tc::TcAttachType::clone_to_uninit(&self, dest: *mut u8)
  6326. impl<T> core::convert::From<T> for aya::programs::tc::TcAttachType
  6327. pub fn aya::programs::tc::TcAttachType::from(t: T) -> T
  6328. pub enum aya::programs::tc::TcError
  6329. pub aya::programs::tc::TcError::AlreadyAttached
  6330. pub aya::programs::tc::TcError::InvalidLinkOperation
  6331. pub aya::programs::tc::TcError::InvalidTcxAttach(u32)
  6332. pub aya::programs::tc::TcError::IoError(std::io::error::Error)
  6333. pub aya::programs::tc::TcError::NetlinkError(aya::sys::netlink::NetlinkError)
  6334. pub aya::programs::tc::TcError::NulError(alloc::ffi::c_str::NulError)
  6335. impl core::convert::From<alloc::ffi::c_str::NulError> for aya::programs::tc::TcError
  6336. pub fn aya::programs::tc::TcError::from(source: alloc::ffi::c_str::NulError) -> Self
  6337. impl core::convert::From<aya::programs::tc::TcError> for aya::programs::ProgramError
  6338. pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self
  6339. impl core::convert::From<std::io::error::Error> for aya::programs::tc::TcError
  6340. pub fn aya::programs::tc::TcError::from(source: std::io::error::Error) -> Self
  6341. impl core::error::Error for aya::programs::tc::TcError
  6342. pub fn aya::programs::tc::TcError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6343. impl core::fmt::Debug for aya::programs::tc::TcError
  6344. pub fn aya::programs::tc::TcError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6345. impl core::fmt::Display for aya::programs::tc::TcError
  6346. pub fn aya::programs::tc::TcError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6347. impl core::marker::Freeze for aya::programs::tc::TcError
  6348. impl core::marker::Send for aya::programs::tc::TcError
  6349. impl core::marker::Sync for aya::programs::tc::TcError
  6350. impl core::marker::Unpin for aya::programs::tc::TcError
  6351. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcError
  6352. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcError
  6353. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcError where U: core::convert::From<T>
  6354. pub fn aya::programs::tc::TcError::into(self) -> U
  6355. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcError where U: core::convert::Into<T>
  6356. pub type aya::programs::tc::TcError::Error = core::convert::Infallible
  6357. pub fn aya::programs::tc::TcError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6358. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcError where U: core::convert::TryFrom<T>
  6359. pub type aya::programs::tc::TcError::Error = <U as core::convert::TryFrom<T>>::Error
  6360. pub fn aya::programs::tc::TcError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6361. impl<T> alloc::string::ToString for aya::programs::tc::TcError where T: core::fmt::Display + ?core::marker::Sized
  6362. pub fn aya::programs::tc::TcError::to_string(&self) -> alloc::string::String
  6363. impl<T> core::any::Any for aya::programs::tc::TcError where T: 'static + ?core::marker::Sized
  6364. pub fn aya::programs::tc::TcError::type_id(&self) -> core::any::TypeId
  6365. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcError where T: ?core::marker::Sized
  6366. pub fn aya::programs::tc::TcError::borrow(&self) -> &T
  6367. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcError where T: ?core::marker::Sized
  6368. pub fn aya::programs::tc::TcError::borrow_mut(&mut self) -> &mut T
  6369. impl<T> core::convert::From<T> for aya::programs::tc::TcError
  6370. pub fn aya::programs::tc::TcError::from(t: T) -> T
  6371. pub struct aya::programs::tc::NlOptions
  6372. pub aya::programs::tc::NlOptions::handle: u32
  6373. pub aya::programs::tc::NlOptions::priority: u16
  6374. impl core::cmp::Eq for aya::programs::tc::NlOptions
  6375. impl core::cmp::PartialEq for aya::programs::tc::NlOptions
  6376. pub fn aya::programs::tc::NlOptions::eq(&self, other: &aya::programs::tc::NlOptions) -> bool
  6377. impl core::default::Default for aya::programs::tc::NlOptions
  6378. pub fn aya::programs::tc::NlOptions::default() -> aya::programs::tc::NlOptions
  6379. impl core::fmt::Debug for aya::programs::tc::NlOptions
  6380. pub fn aya::programs::tc::NlOptions::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6381. impl core::hash::Hash for aya::programs::tc::NlOptions
  6382. pub fn aya::programs::tc::NlOptions::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6383. impl core::marker::StructuralPartialEq for aya::programs::tc::NlOptions
  6384. impl core::marker::Freeze for aya::programs::tc::NlOptions
  6385. impl core::marker::Send for aya::programs::tc::NlOptions
  6386. impl core::marker::Sync for aya::programs::tc::NlOptions
  6387. impl core::marker::Unpin for aya::programs::tc::NlOptions
  6388. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::NlOptions
  6389. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::NlOptions
  6390. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::NlOptions where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6391. pub fn aya::programs::tc::NlOptions::equivalent(&self, key: &K) -> bool
  6392. impl<T, U> core::convert::Into<U> for aya::programs::tc::NlOptions where U: core::convert::From<T>
  6393. pub fn aya::programs::tc::NlOptions::into(self) -> U
  6394. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::NlOptions where U: core::convert::Into<T>
  6395. pub type aya::programs::tc::NlOptions::Error = core::convert::Infallible
  6396. pub fn aya::programs::tc::NlOptions::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6397. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::NlOptions where U: core::convert::TryFrom<T>
  6398. pub type aya::programs::tc::NlOptions::Error = <U as core::convert::TryFrom<T>>::Error
  6399. pub fn aya::programs::tc::NlOptions::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6400. impl<T> core::any::Any for aya::programs::tc::NlOptions where T: 'static + ?core::marker::Sized
  6401. pub fn aya::programs::tc::NlOptions::type_id(&self) -> core::any::TypeId
  6402. impl<T> core::borrow::Borrow<T> for aya::programs::tc::NlOptions where T: ?core::marker::Sized
  6403. pub fn aya::programs::tc::NlOptions::borrow(&self) -> &T
  6404. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::NlOptions where T: ?core::marker::Sized
  6405. pub fn aya::programs::tc::NlOptions::borrow_mut(&mut self) -> &mut T
  6406. impl<T> core::convert::From<T> for aya::programs::tc::NlOptions
  6407. pub fn aya::programs::tc::NlOptions::from(t: T) -> T
  6408. pub struct aya::programs::tc::SchedClassifier
  6409. impl aya::programs::tc::SchedClassifier
  6410. pub const aya::programs::tc::SchedClassifier::PROGRAM_TYPE: aya::programs::ProgramType
  6411. pub fn aya::programs::tc::SchedClassifier::attach(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  6412. pub fn aya::programs::tc::SchedClassifier::attach_to_link(&mut self, link: aya::programs::tc::SchedClassifierLink) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  6413. pub fn aya::programs::tc::SchedClassifier::attach_with_options(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType, options: aya::programs::tc::TcAttachOptions) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  6414. pub fn aya::programs::tc::SchedClassifier::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6415. pub fn aya::programs::tc::SchedClassifier::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6416. pub fn aya::programs::tc::SchedClassifier::query_tcx(interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result<(u64, alloc::vec::Vec<aya::programs::ProgramInfo>), aya::programs::ProgramError>
  6417. impl aya::programs::tc::SchedClassifier
  6418. pub fn aya::programs::tc::SchedClassifier::detach(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6419. pub fn aya::programs::tc::SchedClassifier::take_link(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<aya::programs::tc::SchedClassifierLink, aya::programs::ProgramError>
  6420. impl aya::programs::tc::SchedClassifier
  6421. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6422. impl aya::programs::tc::SchedClassifier
  6423. pub fn aya::programs::tc::SchedClassifier::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  6424. impl aya::programs::tc::SchedClassifier
  6425. pub fn aya::programs::tc::SchedClassifier::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6426. impl aya::programs::tc::SchedClassifier
  6427. pub fn aya::programs::tc::SchedClassifier::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6428. pub fn aya::programs::tc::SchedClassifier::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6429. impl aya::programs::tc::SchedClassifier
  6430. pub fn aya::programs::tc::SchedClassifier::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6431. impl aya::programs::MultiProgram for aya::programs::tc::SchedClassifier
  6432. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::ProgramError>
  6433. impl core::fmt::Debug for aya::programs::tc::SchedClassifier
  6434. pub fn aya::programs::tc::SchedClassifier::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6435. impl core::ops::drop::Drop for aya::programs::tc::SchedClassifier
  6436. pub fn aya::programs::tc::SchedClassifier::drop(&mut self)
  6437. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier
  6438. pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  6439. pub fn &'a aya::programs::tc::SchedClassifier::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  6440. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier
  6441. pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  6442. pub fn &'a mut aya::programs::tc::SchedClassifier::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  6443. impl core::marker::Freeze for aya::programs::tc::SchedClassifier
  6444. impl core::marker::Send for aya::programs::tc::SchedClassifier
  6445. impl core::marker::Sync for aya::programs::tc::SchedClassifier
  6446. impl core::marker::Unpin for aya::programs::tc::SchedClassifier
  6447. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifier
  6448. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifier
  6449. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifier where U: core::convert::From<T>
  6450. pub fn aya::programs::tc::SchedClassifier::into(self) -> U
  6451. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifier where U: core::convert::Into<T>
  6452. pub type aya::programs::tc::SchedClassifier::Error = core::convert::Infallible
  6453. pub fn aya::programs::tc::SchedClassifier::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6454. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifier where U: core::convert::TryFrom<T>
  6455. pub type aya::programs::tc::SchedClassifier::Error = <U as core::convert::TryFrom<T>>::Error
  6456. pub fn aya::programs::tc::SchedClassifier::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6457. impl<T> core::any::Any for aya::programs::tc::SchedClassifier where T: 'static + ?core::marker::Sized
  6458. pub fn aya::programs::tc::SchedClassifier::type_id(&self) -> core::any::TypeId
  6459. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifier where T: ?core::marker::Sized
  6460. pub fn aya::programs::tc::SchedClassifier::borrow(&self) -> &T
  6461. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifier where T: ?core::marker::Sized
  6462. pub fn aya::programs::tc::SchedClassifier::borrow_mut(&mut self) -> &mut T
  6463. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifier
  6464. pub fn aya::programs::tc::SchedClassifier::from(t: T) -> T
  6465. pub struct aya::programs::tc::SchedClassifierLink(_)
  6466. impl aya::programs::tc::SchedClassifierLink
  6467. pub fn aya::programs::tc::SchedClassifierLink::attach_type(&self) -> core::result::Result<aya::programs::tc::TcAttachType, aya::programs::ProgramError>
  6468. pub fn aya::programs::tc::SchedClassifierLink::attached(if_name: &str, attach_type: aya::programs::tc::TcAttachType, priority: u16, handle: u32) -> core::result::Result<Self, std::io::error::Error>
  6469. pub fn aya::programs::tc::SchedClassifierLink::handle(&self) -> core::result::Result<u32, aya::programs::ProgramError>
  6470. pub fn aya::programs::tc::SchedClassifierLink::priority(&self) -> core::result::Result<u16, aya::programs::ProgramError>
  6471. impl aya::programs::MultiProgLink for aya::programs::tc::SchedClassifierLink
  6472. pub fn aya::programs::tc::SchedClassifierLink::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::links::LinkError>
  6473. impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink
  6474. pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId
  6475. pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6476. pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id
  6477. impl core::cmp::Eq for aya::programs::tc::SchedClassifierLink
  6478. impl core::cmp::PartialEq for aya::programs::tc::SchedClassifierLink
  6479. pub fn aya::programs::tc::SchedClassifierLink::eq(&self, other: &Self) -> bool
  6480. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::tc::SchedClassifierLink
  6481. pub type aya::programs::tc::SchedClassifierLink::Error = aya::programs::links::LinkError
  6482. pub fn aya::programs::tc::SchedClassifierLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  6483. impl core::convert::TryFrom<aya::programs::tc::SchedClassifierLink> for aya::programs::links::FdLink
  6484. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  6485. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::tc::SchedClassifierLink) -> core::result::Result<Self, Self::Error>
  6486. impl core::fmt::Debug for aya::programs::tc::SchedClassifierLink
  6487. pub fn aya::programs::tc::SchedClassifierLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6488. impl core::hash::Hash for aya::programs::tc::SchedClassifierLink
  6489. pub fn aya::programs::tc::SchedClassifierLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6490. impl core::ops::drop::Drop for aya::programs::tc::SchedClassifierLink
  6491. pub fn aya::programs::tc::SchedClassifierLink::drop(&mut self)
  6492. impl equivalent::Equivalent<aya::programs::tc::SchedClassifierLink> for aya::programs::tc::SchedClassifierLinkId
  6493. pub fn aya::programs::tc::SchedClassifierLinkId::equivalent(&self, key: &aya::programs::tc::SchedClassifierLink) -> bool
  6494. impl<'a> core::convert::TryFrom<&'a aya::programs::tc::SchedClassifierLink> for &'a aya::programs::links::FdLink
  6495. pub type &'a aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  6496. pub fn &'a aya::programs::links::FdLink::try_from(value: &'a aya::programs::tc::SchedClassifierLink) -> core::result::Result<Self, Self::Error>
  6497. impl core::marker::Freeze for aya::programs::tc::SchedClassifierLink
  6498. impl core::marker::Send for aya::programs::tc::SchedClassifierLink
  6499. impl core::marker::Sync for aya::programs::tc::SchedClassifierLink
  6500. impl core::marker::Unpin for aya::programs::tc::SchedClassifierLink
  6501. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifierLink
  6502. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifierLink
  6503. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::SchedClassifierLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6504. pub fn aya::programs::tc::SchedClassifierLink::equivalent(&self, key: &K) -> bool
  6505. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifierLink where U: core::convert::From<T>
  6506. pub fn aya::programs::tc::SchedClassifierLink::into(self) -> U
  6507. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifierLink where U: core::convert::Into<T>
  6508. pub type aya::programs::tc::SchedClassifierLink::Error = core::convert::Infallible
  6509. pub fn aya::programs::tc::SchedClassifierLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6510. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifierLink where U: core::convert::TryFrom<T>
  6511. pub type aya::programs::tc::SchedClassifierLink::Error = <U as core::convert::TryFrom<T>>::Error
  6512. pub fn aya::programs::tc::SchedClassifierLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6513. impl<T> core::any::Any for aya::programs::tc::SchedClassifierLink where T: 'static + ?core::marker::Sized
  6514. pub fn aya::programs::tc::SchedClassifierLink::type_id(&self) -> core::any::TypeId
  6515. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifierLink where T: ?core::marker::Sized
  6516. pub fn aya::programs::tc::SchedClassifierLink::borrow(&self) -> &T
  6517. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifierLink where T: ?core::marker::Sized
  6518. pub fn aya::programs::tc::SchedClassifierLink::borrow_mut(&mut self) -> &mut T
  6519. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifierLink
  6520. pub fn aya::programs::tc::SchedClassifierLink::from(t: T) -> T
  6521. pub struct aya::programs::tc::SchedClassifierLinkId(_)
  6522. impl core::cmp::Eq for aya::programs::tc::SchedClassifierLinkId
  6523. impl core::cmp::PartialEq for aya::programs::tc::SchedClassifierLinkId
  6524. pub fn aya::programs::tc::SchedClassifierLinkId::eq(&self, other: &aya::programs::tc::SchedClassifierLinkId) -> bool
  6525. impl core::fmt::Debug for aya::programs::tc::SchedClassifierLinkId
  6526. pub fn aya::programs::tc::SchedClassifierLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6527. impl core::hash::Hash for aya::programs::tc::SchedClassifierLinkId
  6528. pub fn aya::programs::tc::SchedClassifierLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6529. impl core::marker::StructuralPartialEq for aya::programs::tc::SchedClassifierLinkId
  6530. impl equivalent::Equivalent<aya::programs::tc::SchedClassifierLink> for aya::programs::tc::SchedClassifierLinkId
  6531. pub fn aya::programs::tc::SchedClassifierLinkId::equivalent(&self, key: &aya::programs::tc::SchedClassifierLink) -> bool
  6532. impl core::marker::Freeze for aya::programs::tc::SchedClassifierLinkId
  6533. impl core::marker::Send for aya::programs::tc::SchedClassifierLinkId
  6534. impl core::marker::Sync for aya::programs::tc::SchedClassifierLinkId
  6535. impl core::marker::Unpin for aya::programs::tc::SchedClassifierLinkId
  6536. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifierLinkId
  6537. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifierLinkId
  6538. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::SchedClassifierLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6539. pub fn aya::programs::tc::SchedClassifierLinkId::equivalent(&self, key: &K) -> bool
  6540. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifierLinkId where U: core::convert::From<T>
  6541. pub fn aya::programs::tc::SchedClassifierLinkId::into(self) -> U
  6542. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifierLinkId where U: core::convert::Into<T>
  6543. pub type aya::programs::tc::SchedClassifierLinkId::Error = core::convert::Infallible
  6544. pub fn aya::programs::tc::SchedClassifierLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6545. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifierLinkId where U: core::convert::TryFrom<T>
  6546. pub type aya::programs::tc::SchedClassifierLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6547. pub fn aya::programs::tc::SchedClassifierLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6548. impl<T> core::any::Any for aya::programs::tc::SchedClassifierLinkId where T: 'static + ?core::marker::Sized
  6549. pub fn aya::programs::tc::SchedClassifierLinkId::type_id(&self) -> core::any::TypeId
  6550. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifierLinkId where T: ?core::marker::Sized
  6551. pub fn aya::programs::tc::SchedClassifierLinkId::borrow(&self) -> &T
  6552. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifierLinkId where T: ?core::marker::Sized
  6553. pub fn aya::programs::tc::SchedClassifierLinkId::borrow_mut(&mut self) -> &mut T
  6554. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifierLinkId
  6555. pub fn aya::programs::tc::SchedClassifierLinkId::from(t: T) -> T
  6556. pub fn aya::programs::tc::qdisc_add_clsact(if_name: &str) -> core::result::Result<(), aya::programs::tc::TcError>
  6557. pub fn aya::programs::tc::qdisc_detach_program(if_name: &str, attach_type: aya::programs::tc::TcAttachType, name: &str) -> core::result::Result<(), aya::programs::tc::TcError>
  6558. pub mod aya::programs::tp_btf
  6559. pub struct aya::programs::tp_btf::BtfTracePoint
  6560. impl aya::programs::tp_btf::BtfTracePoint
  6561. pub const aya::programs::tp_btf::BtfTracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  6562. pub fn aya::programs::tp_btf::BtfTracePoint::attach(&mut self) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLinkId, aya::programs::ProgramError>
  6563. pub fn aya::programs::tp_btf::BtfTracePoint::load(&mut self, tracepoint: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  6564. impl aya::programs::tp_btf::BtfTracePoint
  6565. pub fn aya::programs::tp_btf::BtfTracePoint::detach(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6566. pub fn aya::programs::tp_btf::BtfTracePoint::take_link(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLink, aya::programs::ProgramError>
  6567. impl aya::programs::tp_btf::BtfTracePoint
  6568. pub fn aya::programs::tp_btf::BtfTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6569. impl aya::programs::tp_btf::BtfTracePoint
  6570. pub fn aya::programs::tp_btf::BtfTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6571. impl aya::programs::tp_btf::BtfTracePoint
  6572. pub unsafe fn aya::programs::tp_btf::BtfTracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  6573. impl aya::programs::tp_btf::BtfTracePoint
  6574. pub fn aya::programs::tp_btf::BtfTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6575. impl aya::programs::tp_btf::BtfTracePoint
  6576. pub fn aya::programs::tp_btf::BtfTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6577. pub fn aya::programs::tp_btf::BtfTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6578. impl aya::programs::tp_btf::BtfTracePoint
  6579. pub fn aya::programs::tp_btf::BtfTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6580. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePoint
  6581. pub fn aya::programs::tp_btf::BtfTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6582. impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePoint
  6583. pub fn aya::programs::tp_btf::BtfTracePoint::drop(&mut self)
  6584. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint
  6585. pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  6586. pub fn &'a aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  6587. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint
  6588. pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  6589. pub fn &'a mut aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  6590. impl core::marker::Freeze for aya::programs::tp_btf::BtfTracePoint
  6591. impl core::marker::Send for aya::programs::tp_btf::BtfTracePoint
  6592. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePoint
  6593. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePoint
  6594. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePoint
  6595. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePoint
  6596. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::From<T>
  6597. pub fn aya::programs::tp_btf::BtfTracePoint::into(self) -> U
  6598. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::Into<T>
  6599. pub type aya::programs::tp_btf::BtfTracePoint::Error = core::convert::Infallible
  6600. pub fn aya::programs::tp_btf::BtfTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6601. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::TryFrom<T>
  6602. pub type aya::programs::tp_btf::BtfTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  6603. pub fn aya::programs::tp_btf::BtfTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6604. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePoint where T: 'static + ?core::marker::Sized
  6605. pub fn aya::programs::tp_btf::BtfTracePoint::type_id(&self) -> core::any::TypeId
  6606. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePoint where T: ?core::marker::Sized
  6607. pub fn aya::programs::tp_btf::BtfTracePoint::borrow(&self) -> &T
  6608. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePoint where T: ?core::marker::Sized
  6609. pub fn aya::programs::tp_btf::BtfTracePoint::borrow_mut(&mut self) -> &mut T
  6610. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePoint
  6611. pub fn aya::programs::tp_btf::BtfTracePoint::from(t: T) -> T
  6612. pub struct aya::programs::tp_btf::BtfTracePointLink(_)
  6613. impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink
  6614. pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId
  6615. pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6616. pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id
  6617. impl core::cmp::Eq for aya::programs::tp_btf::BtfTracePointLink
  6618. impl core::cmp::PartialEq for aya::programs::tp_btf::BtfTracePointLink
  6619. pub fn aya::programs::tp_btf::BtfTracePointLink::eq(&self, other: &Self) -> bool
  6620. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::tp_btf::BtfTracePointLink
  6621. pub fn aya::programs::tp_btf::BtfTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::tp_btf::BtfTracePointLink
  6622. impl core::convert::From<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::links::FdLink
  6623. pub fn aya::programs::links::FdLink::from(w: aya::programs::tp_btf::BtfTracePointLink) -> aya::programs::links::FdLink
  6624. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePointLink
  6625. pub fn aya::programs::tp_btf::BtfTracePointLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6626. impl core::hash::Hash for aya::programs::tp_btf::BtfTracePointLink
  6627. pub fn aya::programs::tp_btf::BtfTracePointLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6628. impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePointLink
  6629. pub fn aya::programs::tp_btf::BtfTracePointLink::drop(&mut self)
  6630. impl equivalent::Equivalent<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::tp_btf::BtfTracePointLinkId
  6631. pub fn aya::programs::tp_btf::BtfTracePointLinkId::equivalent(&self, key: &aya::programs::tp_btf::BtfTracePointLink) -> bool
  6632. impl core::marker::Freeze for aya::programs::tp_btf::BtfTracePointLink
  6633. impl core::marker::Send for aya::programs::tp_btf::BtfTracePointLink
  6634. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePointLink
  6635. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePointLink
  6636. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePointLink
  6637. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePointLink
  6638. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tp_btf::BtfTracePointLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6639. pub fn aya::programs::tp_btf::BtfTracePointLink::equivalent(&self, key: &K) -> bool
  6640. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::From<T>
  6641. pub fn aya::programs::tp_btf::BtfTracePointLink::into(self) -> U
  6642. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::Into<T>
  6643. pub type aya::programs::tp_btf::BtfTracePointLink::Error = core::convert::Infallible
  6644. pub fn aya::programs::tp_btf::BtfTracePointLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6645. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::TryFrom<T>
  6646. pub type aya::programs::tp_btf::BtfTracePointLink::Error = <U as core::convert::TryFrom<T>>::Error
  6647. pub fn aya::programs::tp_btf::BtfTracePointLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6648. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePointLink where T: 'static + ?core::marker::Sized
  6649. pub fn aya::programs::tp_btf::BtfTracePointLink::type_id(&self) -> core::any::TypeId
  6650. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePointLink where T: ?core::marker::Sized
  6651. pub fn aya::programs::tp_btf::BtfTracePointLink::borrow(&self) -> &T
  6652. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePointLink where T: ?core::marker::Sized
  6653. pub fn aya::programs::tp_btf::BtfTracePointLink::borrow_mut(&mut self) -> &mut T
  6654. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePointLink
  6655. pub fn aya::programs::tp_btf::BtfTracePointLink::from(t: T) -> T
  6656. pub struct aya::programs::tp_btf::BtfTracePointLinkId(_)
  6657. impl core::cmp::Eq for aya::programs::tp_btf::BtfTracePointLinkId
  6658. impl core::cmp::PartialEq for aya::programs::tp_btf::BtfTracePointLinkId
  6659. pub fn aya::programs::tp_btf::BtfTracePointLinkId::eq(&self, other: &aya::programs::tp_btf::BtfTracePointLinkId) -> bool
  6660. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePointLinkId
  6661. pub fn aya::programs::tp_btf::BtfTracePointLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6662. impl core::hash::Hash for aya::programs::tp_btf::BtfTracePointLinkId
  6663. pub fn aya::programs::tp_btf::BtfTracePointLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6664. impl core::marker::StructuralPartialEq for aya::programs::tp_btf::BtfTracePointLinkId
  6665. impl equivalent::Equivalent<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::tp_btf::BtfTracePointLinkId
  6666. pub fn aya::programs::tp_btf::BtfTracePointLinkId::equivalent(&self, key: &aya::programs::tp_btf::BtfTracePointLink) -> bool
  6667. impl core::marker::Freeze for aya::programs::tp_btf::BtfTracePointLinkId
  6668. impl core::marker::Send for aya::programs::tp_btf::BtfTracePointLinkId
  6669. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePointLinkId
  6670. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePointLinkId
  6671. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePointLinkId
  6672. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePointLinkId
  6673. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tp_btf::BtfTracePointLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6674. pub fn aya::programs::tp_btf::BtfTracePointLinkId::equivalent(&self, key: &K) -> bool
  6675. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::From<T>
  6676. pub fn aya::programs::tp_btf::BtfTracePointLinkId::into(self) -> U
  6677. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::Into<T>
  6678. pub type aya::programs::tp_btf::BtfTracePointLinkId::Error = core::convert::Infallible
  6679. pub fn aya::programs::tp_btf::BtfTracePointLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6680. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::TryFrom<T>
  6681. pub type aya::programs::tp_btf::BtfTracePointLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6682. pub fn aya::programs::tp_btf::BtfTracePointLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6683. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePointLinkId where T: 'static + ?core::marker::Sized
  6684. pub fn aya::programs::tp_btf::BtfTracePointLinkId::type_id(&self) -> core::any::TypeId
  6685. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePointLinkId where T: ?core::marker::Sized
  6686. pub fn aya::programs::tp_btf::BtfTracePointLinkId::borrow(&self) -> &T
  6687. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePointLinkId where T: ?core::marker::Sized
  6688. pub fn aya::programs::tp_btf::BtfTracePointLinkId::borrow_mut(&mut self) -> &mut T
  6689. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePointLinkId
  6690. pub fn aya::programs::tp_btf::BtfTracePointLinkId::from(t: T) -> T
  6691. pub mod aya::programs::trace_point
  6692. pub enum aya::programs::trace_point::TracePointError
  6693. pub aya::programs::trace_point::TracePointError::FileError
  6694. pub aya::programs::trace_point::TracePointError::FileError::filename: std::path::PathBuf
  6695. pub aya::programs::trace_point::TracePointError::FileError::io_error: std::io::error::Error
  6696. impl core::convert::From<aya::programs::trace_point::TracePointError> for aya::programs::ProgramError
  6697. pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self
  6698. impl core::error::Error for aya::programs::trace_point::TracePointError
  6699. pub fn aya::programs::trace_point::TracePointError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6700. impl core::fmt::Debug for aya::programs::trace_point::TracePointError
  6701. pub fn aya::programs::trace_point::TracePointError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6702. impl core::fmt::Display for aya::programs::trace_point::TracePointError
  6703. pub fn aya::programs::trace_point::TracePointError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6704. impl core::marker::Freeze for aya::programs::trace_point::TracePointError
  6705. impl core::marker::Send for aya::programs::trace_point::TracePointError
  6706. impl core::marker::Sync for aya::programs::trace_point::TracePointError
  6707. impl core::marker::Unpin for aya::programs::trace_point::TracePointError
  6708. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointError
  6709. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointError
  6710. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointError where U: core::convert::From<T>
  6711. pub fn aya::programs::trace_point::TracePointError::into(self) -> U
  6712. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointError where U: core::convert::Into<T>
  6713. pub type aya::programs::trace_point::TracePointError::Error = core::convert::Infallible
  6714. pub fn aya::programs::trace_point::TracePointError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6715. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointError where U: core::convert::TryFrom<T>
  6716. pub type aya::programs::trace_point::TracePointError::Error = <U as core::convert::TryFrom<T>>::Error
  6717. pub fn aya::programs::trace_point::TracePointError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6718. impl<T> alloc::string::ToString for aya::programs::trace_point::TracePointError where T: core::fmt::Display + ?core::marker::Sized
  6719. pub fn aya::programs::trace_point::TracePointError::to_string(&self) -> alloc::string::String
  6720. impl<T> core::any::Any for aya::programs::trace_point::TracePointError where T: 'static + ?core::marker::Sized
  6721. pub fn aya::programs::trace_point::TracePointError::type_id(&self) -> core::any::TypeId
  6722. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointError where T: ?core::marker::Sized
  6723. pub fn aya::programs::trace_point::TracePointError::borrow(&self) -> &T
  6724. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointError where T: ?core::marker::Sized
  6725. pub fn aya::programs::trace_point::TracePointError::borrow_mut(&mut self) -> &mut T
  6726. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointError
  6727. pub fn aya::programs::trace_point::TracePointError::from(t: T) -> T
  6728. pub struct aya::programs::trace_point::TracePoint
  6729. impl aya::programs::trace_point::TracePoint
  6730. pub const aya::programs::trace_point::TracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  6731. pub fn aya::programs::trace_point::TracePoint::attach(&mut self, category: &str, name: &str) -> core::result::Result<aya::programs::trace_point::TracePointLinkId, aya::programs::ProgramError>
  6732. pub fn aya::programs::trace_point::TracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6733. impl aya::programs::trace_point::TracePoint
  6734. pub fn aya::programs::trace_point::TracePoint::detach(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6735. pub fn aya::programs::trace_point::TracePoint::take_link(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<aya::programs::trace_point::TracePointLink, aya::programs::ProgramError>
  6736. impl aya::programs::trace_point::TracePoint
  6737. pub fn aya::programs::trace_point::TracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6738. impl aya::programs::trace_point::TracePoint
  6739. pub fn aya::programs::trace_point::TracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6740. impl aya::programs::trace_point::TracePoint
  6741. pub fn aya::programs::trace_point::TracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  6742. impl aya::programs::trace_point::TracePoint
  6743. pub fn aya::programs::trace_point::TracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6744. impl aya::programs::trace_point::TracePoint
  6745. pub fn aya::programs::trace_point::TracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6746. pub fn aya::programs::trace_point::TracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6747. impl aya::programs::trace_point::TracePoint
  6748. pub fn aya::programs::trace_point::TracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6749. impl core::fmt::Debug for aya::programs::trace_point::TracePoint
  6750. pub fn aya::programs::trace_point::TracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6751. impl core::ops::drop::Drop for aya::programs::trace_point::TracePoint
  6752. pub fn aya::programs::trace_point::TracePoint::drop(&mut self)
  6753. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint
  6754. pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  6755. pub fn &'a aya::programs::trace_point::TracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  6756. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint
  6757. pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  6758. pub fn &'a mut aya::programs::trace_point::TracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  6759. impl core::marker::Freeze for aya::programs::trace_point::TracePoint
  6760. impl core::marker::Send for aya::programs::trace_point::TracePoint
  6761. impl core::marker::Sync for aya::programs::trace_point::TracePoint
  6762. impl core::marker::Unpin for aya::programs::trace_point::TracePoint
  6763. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePoint
  6764. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePoint
  6765. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePoint where U: core::convert::From<T>
  6766. pub fn aya::programs::trace_point::TracePoint::into(self) -> U
  6767. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePoint where U: core::convert::Into<T>
  6768. pub type aya::programs::trace_point::TracePoint::Error = core::convert::Infallible
  6769. pub fn aya::programs::trace_point::TracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6770. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePoint where U: core::convert::TryFrom<T>
  6771. pub type aya::programs::trace_point::TracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  6772. pub fn aya::programs::trace_point::TracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6773. impl<T> core::any::Any for aya::programs::trace_point::TracePoint where T: 'static + ?core::marker::Sized
  6774. pub fn aya::programs::trace_point::TracePoint::type_id(&self) -> core::any::TypeId
  6775. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePoint where T: ?core::marker::Sized
  6776. pub fn aya::programs::trace_point::TracePoint::borrow(&self) -> &T
  6777. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePoint where T: ?core::marker::Sized
  6778. pub fn aya::programs::trace_point::TracePoint::borrow_mut(&mut self) -> &mut T
  6779. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePoint
  6780. pub fn aya::programs::trace_point::TracePoint::from(t: T) -> T
  6781. pub struct aya::programs::trace_point::TracePointLink(_)
  6782. impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink
  6783. pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId
  6784. pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6785. pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id
  6786. impl core::cmp::Eq for aya::programs::trace_point::TracePointLink
  6787. impl core::cmp::PartialEq for aya::programs::trace_point::TracePointLink
  6788. pub fn aya::programs::trace_point::TracePointLink::eq(&self, other: &Self) -> bool
  6789. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::trace_point::TracePointLink
  6790. pub type aya::programs::trace_point::TracePointLink::Error = aya::programs::links::LinkError
  6791. pub fn aya::programs::trace_point::TracePointLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  6792. impl core::convert::TryFrom<aya::programs::trace_point::TracePointLink> for aya::programs::links::FdLink
  6793. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  6794. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::trace_point::TracePointLink) -> core::result::Result<Self, Self::Error>
  6795. impl core::fmt::Debug for aya::programs::trace_point::TracePointLink
  6796. pub fn aya::programs::trace_point::TracePointLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6797. impl core::hash::Hash for aya::programs::trace_point::TracePointLink
  6798. pub fn aya::programs::trace_point::TracePointLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6799. impl core::ops::drop::Drop for aya::programs::trace_point::TracePointLink
  6800. pub fn aya::programs::trace_point::TracePointLink::drop(&mut self)
  6801. impl equivalent::Equivalent<aya::programs::trace_point::TracePointLink> for aya::programs::trace_point::TracePointLinkId
  6802. pub fn aya::programs::trace_point::TracePointLinkId::equivalent(&self, key: &aya::programs::trace_point::TracePointLink) -> bool
  6803. impl core::marker::Freeze for aya::programs::trace_point::TracePointLink
  6804. impl core::marker::Send for aya::programs::trace_point::TracePointLink
  6805. impl core::marker::Sync for aya::programs::trace_point::TracePointLink
  6806. impl core::marker::Unpin for aya::programs::trace_point::TracePointLink
  6807. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointLink
  6808. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointLink
  6809. impl<Q, K> equivalent::Equivalent<K> for aya::programs::trace_point::TracePointLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6810. pub fn aya::programs::trace_point::TracePointLink::equivalent(&self, key: &K) -> bool
  6811. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointLink where U: core::convert::From<T>
  6812. pub fn aya::programs::trace_point::TracePointLink::into(self) -> U
  6813. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointLink where U: core::convert::Into<T>
  6814. pub type aya::programs::trace_point::TracePointLink::Error = core::convert::Infallible
  6815. pub fn aya::programs::trace_point::TracePointLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6816. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointLink where U: core::convert::TryFrom<T>
  6817. pub type aya::programs::trace_point::TracePointLink::Error = <U as core::convert::TryFrom<T>>::Error
  6818. pub fn aya::programs::trace_point::TracePointLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6819. impl<T> core::any::Any for aya::programs::trace_point::TracePointLink where T: 'static + ?core::marker::Sized
  6820. pub fn aya::programs::trace_point::TracePointLink::type_id(&self) -> core::any::TypeId
  6821. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointLink where T: ?core::marker::Sized
  6822. pub fn aya::programs::trace_point::TracePointLink::borrow(&self) -> &T
  6823. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointLink where T: ?core::marker::Sized
  6824. pub fn aya::programs::trace_point::TracePointLink::borrow_mut(&mut self) -> &mut T
  6825. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointLink
  6826. pub fn aya::programs::trace_point::TracePointLink::from(t: T) -> T
  6827. pub struct aya::programs::trace_point::TracePointLinkId(_)
  6828. impl core::cmp::Eq for aya::programs::trace_point::TracePointLinkId
  6829. impl core::cmp::PartialEq for aya::programs::trace_point::TracePointLinkId
  6830. pub fn aya::programs::trace_point::TracePointLinkId::eq(&self, other: &aya::programs::trace_point::TracePointLinkId) -> bool
  6831. impl core::fmt::Debug for aya::programs::trace_point::TracePointLinkId
  6832. pub fn aya::programs::trace_point::TracePointLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6833. impl core::hash::Hash for aya::programs::trace_point::TracePointLinkId
  6834. pub fn aya::programs::trace_point::TracePointLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6835. impl core::marker::StructuralPartialEq for aya::programs::trace_point::TracePointLinkId
  6836. impl equivalent::Equivalent<aya::programs::trace_point::TracePointLink> for aya::programs::trace_point::TracePointLinkId
  6837. pub fn aya::programs::trace_point::TracePointLinkId::equivalent(&self, key: &aya::programs::trace_point::TracePointLink) -> bool
  6838. impl core::marker::Freeze for aya::programs::trace_point::TracePointLinkId
  6839. impl core::marker::Send for aya::programs::trace_point::TracePointLinkId
  6840. impl core::marker::Sync for aya::programs::trace_point::TracePointLinkId
  6841. impl core::marker::Unpin for aya::programs::trace_point::TracePointLinkId
  6842. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointLinkId
  6843. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointLinkId
  6844. impl<Q, K> equivalent::Equivalent<K> for aya::programs::trace_point::TracePointLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6845. pub fn aya::programs::trace_point::TracePointLinkId::equivalent(&self, key: &K) -> bool
  6846. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointLinkId where U: core::convert::From<T>
  6847. pub fn aya::programs::trace_point::TracePointLinkId::into(self) -> U
  6848. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointLinkId where U: core::convert::Into<T>
  6849. pub type aya::programs::trace_point::TracePointLinkId::Error = core::convert::Infallible
  6850. pub fn aya::programs::trace_point::TracePointLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6851. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointLinkId where U: core::convert::TryFrom<T>
  6852. pub type aya::programs::trace_point::TracePointLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6853. pub fn aya::programs::trace_point::TracePointLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6854. impl<T> core::any::Any for aya::programs::trace_point::TracePointLinkId where T: 'static + ?core::marker::Sized
  6855. pub fn aya::programs::trace_point::TracePointLinkId::type_id(&self) -> core::any::TypeId
  6856. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointLinkId where T: ?core::marker::Sized
  6857. pub fn aya::programs::trace_point::TracePointLinkId::borrow(&self) -> &T
  6858. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointLinkId where T: ?core::marker::Sized
  6859. pub fn aya::programs::trace_point::TracePointLinkId::borrow_mut(&mut self) -> &mut T
  6860. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointLinkId
  6861. pub fn aya::programs::trace_point::TracePointLinkId::from(t: T) -> T
  6862. pub mod aya::programs::uprobe
  6863. pub enum aya::programs::uprobe::ProcMapError
  6864. pub aya::programs::uprobe::ProcMapError::ParseLine
  6865. pub aya::programs::uprobe::ProcMapError::ParseLine::line: alloc::vec::Vec<u8>
  6866. pub aya::programs::uprobe::ProcMapError::ReadFile(std::io::error::Error)
  6867. impl core::convert::From<std::io::error::Error> for aya::programs::uprobe::ProcMapError
  6868. pub fn aya::programs::uprobe::ProcMapError::from(source: std::io::error::Error) -> Self
  6869. impl core::error::Error for aya::programs::uprobe::ProcMapError
  6870. pub fn aya::programs::uprobe::ProcMapError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6871. impl core::fmt::Debug for aya::programs::uprobe::ProcMapError
  6872. pub fn aya::programs::uprobe::ProcMapError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6873. impl core::fmt::Display for aya::programs::uprobe::ProcMapError
  6874. pub fn aya::programs::uprobe::ProcMapError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6875. impl core::marker::Freeze for aya::programs::uprobe::ProcMapError
  6876. impl core::marker::Send for aya::programs::uprobe::ProcMapError
  6877. impl core::marker::Sync for aya::programs::uprobe::ProcMapError
  6878. impl core::marker::Unpin for aya::programs::uprobe::ProcMapError
  6879. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::ProcMapError
  6880. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::ProcMapError
  6881. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::ProcMapError where U: core::convert::From<T>
  6882. pub fn aya::programs::uprobe::ProcMapError::into(self) -> U
  6883. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::ProcMapError where U: core::convert::Into<T>
  6884. pub type aya::programs::uprobe::ProcMapError::Error = core::convert::Infallible
  6885. pub fn aya::programs::uprobe::ProcMapError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6886. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::ProcMapError where U: core::convert::TryFrom<T>
  6887. pub type aya::programs::uprobe::ProcMapError::Error = <U as core::convert::TryFrom<T>>::Error
  6888. pub fn aya::programs::uprobe::ProcMapError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6889. impl<T> alloc::string::ToString for aya::programs::uprobe::ProcMapError where T: core::fmt::Display + ?core::marker::Sized
  6890. pub fn aya::programs::uprobe::ProcMapError::to_string(&self) -> alloc::string::String
  6891. impl<T> core::any::Any for aya::programs::uprobe::ProcMapError where T: 'static + ?core::marker::Sized
  6892. pub fn aya::programs::uprobe::ProcMapError::type_id(&self) -> core::any::TypeId
  6893. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::ProcMapError where T: ?core::marker::Sized
  6894. pub fn aya::programs::uprobe::ProcMapError::borrow(&self) -> &T
  6895. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::ProcMapError where T: ?core::marker::Sized
  6896. pub fn aya::programs::uprobe::ProcMapError::borrow_mut(&mut self) -> &mut T
  6897. impl<T> core::convert::From<T> for aya::programs::uprobe::ProcMapError
  6898. pub fn aya::programs::uprobe::ProcMapError::from(t: T) -> T
  6899. pub enum aya::programs::uprobe::UProbeAttachLocation<'a>
  6900. pub aya::programs::uprobe::UProbeAttachLocation::AbsoluteOffset(u64)
  6901. pub aya::programs::uprobe::UProbeAttachLocation::Symbol(&'a str)
  6902. pub aya::programs::uprobe::UProbeAttachLocation::SymbolOffset(&'a str, u64)
  6903. impl core::convert::From<u64> for aya::programs::uprobe::UProbeAttachLocation<'static>
  6904. pub fn aya::programs::uprobe::UProbeAttachLocation<'static>::from(offset: u64) -> Self
  6905. impl<'a> core::convert::From<&'a str> for aya::programs::uprobe::UProbeAttachLocation<'a>
  6906. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::from(s: &'a str) -> Self
  6907. impl<'a> core::marker::Freeze for aya::programs::uprobe::UProbeAttachLocation<'a>
  6908. impl<'a> core::marker::Send for aya::programs::uprobe::UProbeAttachLocation<'a>
  6909. impl<'a> core::marker::Sync for aya::programs::uprobe::UProbeAttachLocation<'a>
  6910. impl<'a> core::marker::Unpin for aya::programs::uprobe::UProbeAttachLocation<'a>
  6911. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeAttachLocation<'a>
  6912. impl<'a> core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeAttachLocation<'a>
  6913. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeAttachLocation<'a> where U: core::convert::From<T>
  6914. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::into(self) -> U
  6915. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeAttachLocation<'a> where U: core::convert::Into<T>
  6916. pub type aya::programs::uprobe::UProbeAttachLocation<'a>::Error = core::convert::Infallible
  6917. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6918. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeAttachLocation<'a> where U: core::convert::TryFrom<T>
  6919. pub type aya::programs::uprobe::UProbeAttachLocation<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  6920. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6921. impl<T> core::any::Any for aya::programs::uprobe::UProbeAttachLocation<'a> where T: 'static + ?core::marker::Sized
  6922. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::type_id(&self) -> core::any::TypeId
  6923. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeAttachLocation<'a> where T: ?core::marker::Sized
  6924. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::borrow(&self) -> &T
  6925. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeAttachLocation<'a> where T: ?core::marker::Sized
  6926. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::borrow_mut(&mut self) -> &mut T
  6927. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeAttachLocation<'a>
  6928. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::from(t: T) -> T
  6929. pub enum aya::programs::uprobe::UProbeError
  6930. pub aya::programs::uprobe::UProbeError::FileError
  6931. pub aya::programs::uprobe::UProbeError::FileError::filename: std::path::PathBuf
  6932. pub aya::programs::uprobe::UProbeError::FileError::io_error: std::io::error::Error
  6933. pub aya::programs::uprobe::UProbeError::InvalidLdSoCache
  6934. pub aya::programs::uprobe::UProbeError::InvalidLdSoCache::io_error: &'static std::io::error::Error
  6935. pub aya::programs::uprobe::UProbeError::InvalidTarget
  6936. pub aya::programs::uprobe::UProbeError::InvalidTarget::path: std::path::PathBuf
  6937. pub aya::programs::uprobe::UProbeError::ProcMap
  6938. pub aya::programs::uprobe::UProbeError::ProcMap::pid: i32
  6939. pub aya::programs::uprobe::UProbeError::ProcMap::source: aya::programs::uprobe::ProcMapError
  6940. pub aya::programs::uprobe::UProbeError::SymbolError
  6941. pub aya::programs::uprobe::UProbeError::SymbolError::error: alloc::boxed::Box<(dyn core::error::Error + core::marker::Send + core::marker::Sync)>
  6942. pub aya::programs::uprobe::UProbeError::SymbolError::symbol: alloc::string::String
  6943. impl core::convert::From<aya::programs::uprobe::UProbeError> for aya::programs::ProgramError
  6944. pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self
  6945. impl core::error::Error for aya::programs::uprobe::UProbeError
  6946. pub fn aya::programs::uprobe::UProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6947. impl core::fmt::Debug for aya::programs::uprobe::UProbeError
  6948. pub fn aya::programs::uprobe::UProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6949. impl core::fmt::Display for aya::programs::uprobe::UProbeError
  6950. pub fn aya::programs::uprobe::UProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6951. impl core::marker::Freeze for aya::programs::uprobe::UProbeError
  6952. impl core::marker::Send for aya::programs::uprobe::UProbeError
  6953. impl core::marker::Sync for aya::programs::uprobe::UProbeError
  6954. impl core::marker::Unpin for aya::programs::uprobe::UProbeError
  6955. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeError
  6956. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeError
  6957. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeError where U: core::convert::From<T>
  6958. pub fn aya::programs::uprobe::UProbeError::into(self) -> U
  6959. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeError where U: core::convert::Into<T>
  6960. pub type aya::programs::uprobe::UProbeError::Error = core::convert::Infallible
  6961. pub fn aya::programs::uprobe::UProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6962. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeError where U: core::convert::TryFrom<T>
  6963. pub type aya::programs::uprobe::UProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  6964. pub fn aya::programs::uprobe::UProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6965. impl<T> alloc::string::ToString for aya::programs::uprobe::UProbeError where T: core::fmt::Display + ?core::marker::Sized
  6966. pub fn aya::programs::uprobe::UProbeError::to_string(&self) -> alloc::string::String
  6967. impl<T> core::any::Any for aya::programs::uprobe::UProbeError where T: 'static + ?core::marker::Sized
  6968. pub fn aya::programs::uprobe::UProbeError::type_id(&self) -> core::any::TypeId
  6969. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeError where T: ?core::marker::Sized
  6970. pub fn aya::programs::uprobe::UProbeError::borrow(&self) -> &T
  6971. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeError where T: ?core::marker::Sized
  6972. pub fn aya::programs::uprobe::UProbeError::borrow_mut(&mut self) -> &mut T
  6973. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeError
  6974. pub fn aya::programs::uprobe::UProbeError::from(t: T) -> T
  6975. pub struct aya::programs::uprobe::UProbe
  6976. impl aya::programs::uprobe::UProbe
  6977. pub const aya::programs::uprobe::UProbe::PROGRAM_TYPE: aya::programs::ProgramType
  6978. pub fn aya::programs::uprobe::UProbe::attach<'loc, T: core::convert::AsRef<std::path::Path>, Loc: core::convert::Into<aya::programs::uprobe::UProbeAttachLocation<'loc>>>(&mut self, location: Loc, target: T, pid: core::option::Option<libc::unix::pid_t>, cookie: core::option::Option<u64>) -> core::result::Result<aya::programs::uprobe::UProbeLinkId, aya::programs::ProgramError>
  6979. pub fn aya::programs::uprobe::UProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  6980. pub fn aya::programs::uprobe::UProbe::kind(&self) -> aya::programs::ProbeKind
  6981. pub fn aya::programs::uprobe::UProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6982. impl aya::programs::uprobe::UProbe
  6983. pub fn aya::programs::uprobe::UProbe::detach(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6984. pub fn aya::programs::uprobe::UProbe::take_link(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<aya::programs::uprobe::UProbeLink, aya::programs::ProgramError>
  6985. impl aya::programs::uprobe::UProbe
  6986. pub fn aya::programs::uprobe::UProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6987. impl aya::programs::uprobe::UProbe
  6988. pub unsafe fn aya::programs::uprobe::UProbe::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  6989. impl aya::programs::uprobe::UProbe
  6990. pub fn aya::programs::uprobe::UProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6991. impl aya::programs::uprobe::UProbe
  6992. pub fn aya::programs::uprobe::UProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6993. pub fn aya::programs::uprobe::UProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6994. impl aya::programs::uprobe::UProbe
  6995. pub fn aya::programs::uprobe::UProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6996. impl core::fmt::Debug for aya::programs::uprobe::UProbe
  6997. pub fn aya::programs::uprobe::UProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6998. impl core::ops::drop::Drop for aya::programs::uprobe::UProbe
  6999. pub fn aya::programs::uprobe::UProbe::drop(&mut self)
  7000. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe
  7001. pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  7002. pub fn &'a aya::programs::uprobe::UProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  7003. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe
  7004. pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  7005. pub fn &'a mut aya::programs::uprobe::UProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  7006. impl core::marker::Freeze for aya::programs::uprobe::UProbe
  7007. impl core::marker::Send for aya::programs::uprobe::UProbe
  7008. impl core::marker::Sync for aya::programs::uprobe::UProbe
  7009. impl core::marker::Unpin for aya::programs::uprobe::UProbe
  7010. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbe
  7011. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbe
  7012. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbe where U: core::convert::From<T>
  7013. pub fn aya::programs::uprobe::UProbe::into(self) -> U
  7014. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbe where U: core::convert::Into<T>
  7015. pub type aya::programs::uprobe::UProbe::Error = core::convert::Infallible
  7016. pub fn aya::programs::uprobe::UProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7017. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbe where U: core::convert::TryFrom<T>
  7018. pub type aya::programs::uprobe::UProbe::Error = <U as core::convert::TryFrom<T>>::Error
  7019. pub fn aya::programs::uprobe::UProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7020. impl<T> core::any::Any for aya::programs::uprobe::UProbe where T: 'static + ?core::marker::Sized
  7021. pub fn aya::programs::uprobe::UProbe::type_id(&self) -> core::any::TypeId
  7022. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbe where T: ?core::marker::Sized
  7023. pub fn aya::programs::uprobe::UProbe::borrow(&self) -> &T
  7024. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbe where T: ?core::marker::Sized
  7025. pub fn aya::programs::uprobe::UProbe::borrow_mut(&mut self) -> &mut T
  7026. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbe
  7027. pub fn aya::programs::uprobe::UProbe::from(t: T) -> T
  7028. pub struct aya::programs::uprobe::UProbeLink(_)
  7029. impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink
  7030. pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId
  7031. pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7032. pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id
  7033. impl core::cmp::Eq for aya::programs::uprobe::UProbeLink
  7034. impl core::cmp::PartialEq for aya::programs::uprobe::UProbeLink
  7035. pub fn aya::programs::uprobe::UProbeLink::eq(&self, other: &Self) -> bool
  7036. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::uprobe::UProbeLink
  7037. pub type aya::programs::uprobe::UProbeLink::Error = aya::programs::links::LinkError
  7038. pub fn aya::programs::uprobe::UProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  7039. impl core::convert::TryFrom<aya::programs::uprobe::UProbeLink> for aya::programs::links::FdLink
  7040. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  7041. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::uprobe::UProbeLink) -> core::result::Result<Self, Self::Error>
  7042. impl core::fmt::Debug for aya::programs::uprobe::UProbeLink
  7043. pub fn aya::programs::uprobe::UProbeLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7044. impl core::hash::Hash for aya::programs::uprobe::UProbeLink
  7045. pub fn aya::programs::uprobe::UProbeLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  7046. impl core::ops::drop::Drop for aya::programs::uprobe::UProbeLink
  7047. pub fn aya::programs::uprobe::UProbeLink::drop(&mut self)
  7048. impl equivalent::Equivalent<aya::programs::uprobe::UProbeLink> for aya::programs::uprobe::UProbeLinkId
  7049. pub fn aya::programs::uprobe::UProbeLinkId::equivalent(&self, key: &aya::programs::uprobe::UProbeLink) -> bool
  7050. impl core::marker::Freeze for aya::programs::uprobe::UProbeLink
  7051. impl core::marker::Send for aya::programs::uprobe::UProbeLink
  7052. impl core::marker::Sync for aya::programs::uprobe::UProbeLink
  7053. impl core::marker::Unpin for aya::programs::uprobe::UProbeLink
  7054. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeLink
  7055. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeLink
  7056. impl<Q, K> equivalent::Equivalent<K> for aya::programs::uprobe::UProbeLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  7057. pub fn aya::programs::uprobe::UProbeLink::equivalent(&self, key: &K) -> bool
  7058. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeLink where U: core::convert::From<T>
  7059. pub fn aya::programs::uprobe::UProbeLink::into(self) -> U
  7060. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeLink where U: core::convert::Into<T>
  7061. pub type aya::programs::uprobe::UProbeLink::Error = core::convert::Infallible
  7062. pub fn aya::programs::uprobe::UProbeLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7063. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeLink where U: core::convert::TryFrom<T>
  7064. pub type aya::programs::uprobe::UProbeLink::Error = <U as core::convert::TryFrom<T>>::Error
  7065. pub fn aya::programs::uprobe::UProbeLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7066. impl<T> core::any::Any for aya::programs::uprobe::UProbeLink where T: 'static + ?core::marker::Sized
  7067. pub fn aya::programs::uprobe::UProbeLink::type_id(&self) -> core::any::TypeId
  7068. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeLink where T: ?core::marker::Sized
  7069. pub fn aya::programs::uprobe::UProbeLink::borrow(&self) -> &T
  7070. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeLink where T: ?core::marker::Sized
  7071. pub fn aya::programs::uprobe::UProbeLink::borrow_mut(&mut self) -> &mut T
  7072. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeLink
  7073. pub fn aya::programs::uprobe::UProbeLink::from(t: T) -> T
  7074. pub struct aya::programs::uprobe::UProbeLinkId(_)
  7075. impl core::cmp::Eq for aya::programs::uprobe::UProbeLinkId
  7076. impl core::cmp::PartialEq for aya::programs::uprobe::UProbeLinkId
  7077. pub fn aya::programs::uprobe::UProbeLinkId::eq(&self, other: &aya::programs::uprobe::UProbeLinkId) -> bool
  7078. impl core::fmt::Debug for aya::programs::uprobe::UProbeLinkId
  7079. pub fn aya::programs::uprobe::UProbeLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7080. impl core::hash::Hash for aya::programs::uprobe::UProbeLinkId
  7081. pub fn aya::programs::uprobe::UProbeLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  7082. impl core::marker::StructuralPartialEq for aya::programs::uprobe::UProbeLinkId
  7083. impl equivalent::Equivalent<aya::programs::uprobe::UProbeLink> for aya::programs::uprobe::UProbeLinkId
  7084. pub fn aya::programs::uprobe::UProbeLinkId::equivalent(&self, key: &aya::programs::uprobe::UProbeLink) -> bool
  7085. impl core::marker::Freeze for aya::programs::uprobe::UProbeLinkId
  7086. impl core::marker::Send for aya::programs::uprobe::UProbeLinkId
  7087. impl core::marker::Sync for aya::programs::uprobe::UProbeLinkId
  7088. impl core::marker::Unpin for aya::programs::uprobe::UProbeLinkId
  7089. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeLinkId
  7090. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeLinkId
  7091. impl<Q, K> equivalent::Equivalent<K> for aya::programs::uprobe::UProbeLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  7092. pub fn aya::programs::uprobe::UProbeLinkId::equivalent(&self, key: &K) -> bool
  7093. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeLinkId where U: core::convert::From<T>
  7094. pub fn aya::programs::uprobe::UProbeLinkId::into(self) -> U
  7095. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeLinkId where U: core::convert::Into<T>
  7096. pub type aya::programs::uprobe::UProbeLinkId::Error = core::convert::Infallible
  7097. pub fn aya::programs::uprobe::UProbeLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7098. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeLinkId where U: core::convert::TryFrom<T>
  7099. pub type aya::programs::uprobe::UProbeLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  7100. pub fn aya::programs::uprobe::UProbeLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7101. impl<T> core::any::Any for aya::programs::uprobe::UProbeLinkId where T: 'static + ?core::marker::Sized
  7102. pub fn aya::programs::uprobe::UProbeLinkId::type_id(&self) -> core::any::TypeId
  7103. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeLinkId where T: ?core::marker::Sized
  7104. pub fn aya::programs::uprobe::UProbeLinkId::borrow(&self) -> &T
  7105. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeLinkId where T: ?core::marker::Sized
  7106. pub fn aya::programs::uprobe::UProbeLinkId::borrow_mut(&mut self) -> &mut T
  7107. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeLinkId
  7108. pub fn aya::programs::uprobe::UProbeLinkId::from(t: T) -> T
  7109. pub mod aya::programs::xdp
  7110. pub enum aya::programs::xdp::XdpError
  7111. pub aya::programs::xdp::XdpError::NetlinkError(aya::sys::netlink::NetlinkError)
  7112. impl core::convert::From<aya::programs::xdp::XdpError> for aya::programs::ProgramError
  7113. pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self
  7114. impl core::error::Error for aya::programs::xdp::XdpError
  7115. pub fn aya::programs::xdp::XdpError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  7116. impl core::fmt::Debug for aya::programs::xdp::XdpError
  7117. pub fn aya::programs::xdp::XdpError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7118. impl core::fmt::Display for aya::programs::xdp::XdpError
  7119. pub fn aya::programs::xdp::XdpError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7120. impl core::marker::Freeze for aya::programs::xdp::XdpError
  7121. impl core::marker::Send for aya::programs::xdp::XdpError
  7122. impl core::marker::Sync for aya::programs::xdp::XdpError
  7123. impl core::marker::Unpin for aya::programs::xdp::XdpError
  7124. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpError
  7125. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpError
  7126. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpError where U: core::convert::From<T>
  7127. pub fn aya::programs::xdp::XdpError::into(self) -> U
  7128. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpError where U: core::convert::Into<T>
  7129. pub type aya::programs::xdp::XdpError::Error = core::convert::Infallible
  7130. pub fn aya::programs::xdp::XdpError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7131. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpError where U: core::convert::TryFrom<T>
  7132. pub type aya::programs::xdp::XdpError::Error = <U as core::convert::TryFrom<T>>::Error
  7133. pub fn aya::programs::xdp::XdpError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7134. impl<T> alloc::string::ToString for aya::programs::xdp::XdpError where T: core::fmt::Display + ?core::marker::Sized
  7135. pub fn aya::programs::xdp::XdpError::to_string(&self) -> alloc::string::String
  7136. impl<T> core::any::Any for aya::programs::xdp::XdpError where T: 'static + ?core::marker::Sized
  7137. pub fn aya::programs::xdp::XdpError::type_id(&self) -> core::any::TypeId
  7138. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpError where T: ?core::marker::Sized
  7139. pub fn aya::programs::xdp::XdpError::borrow(&self) -> &T
  7140. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpError where T: ?core::marker::Sized
  7141. pub fn aya::programs::xdp::XdpError::borrow_mut(&mut self) -> &mut T
  7142. impl<T> core::convert::From<T> for aya::programs::xdp::XdpError
  7143. pub fn aya::programs::xdp::XdpError::from(t: T) -> T
  7144. pub struct aya::programs::xdp::Xdp
  7145. impl aya::programs::xdp::Xdp
  7146. pub const aya::programs::xdp::Xdp::PROGRAM_TYPE: aya::programs::ProgramType
  7147. pub fn aya::programs::xdp::Xdp::attach(&mut self, interface: &str, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  7148. pub fn aya::programs::xdp::Xdp::attach_to_if_index(&mut self, if_index: u32, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  7149. pub fn aya::programs::xdp::Xdp::attach_to_link(&mut self, link: aya::programs::xdp::XdpLink) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  7150. pub fn aya::programs::xdp::Xdp::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::xdp::XdpAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  7151. pub fn aya::programs::xdp::Xdp::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7152. impl aya::programs::xdp::Xdp
  7153. pub fn aya::programs::xdp::Xdp::detach(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  7154. pub fn aya::programs::xdp::Xdp::take_link(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<aya::programs::xdp::XdpLink, aya::programs::ProgramError>
  7155. impl aya::programs::xdp::Xdp
  7156. pub fn aya::programs::xdp::Xdp::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  7157. impl aya::programs::xdp::Xdp
  7158. pub fn aya::programs::xdp::Xdp::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: aya_obj::programs::xdp::XdpAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  7159. impl aya::programs::xdp::Xdp
  7160. pub fn aya::programs::xdp::Xdp::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  7161. impl aya::programs::xdp::Xdp
  7162. pub fn aya::programs::xdp::Xdp::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  7163. pub fn aya::programs::xdp::Xdp::unpin(self) -> core::result::Result<(), std::io::error::Error>
  7164. impl aya::programs::xdp::Xdp
  7165. pub fn aya::programs::xdp::Xdp::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7166. impl core::fmt::Debug for aya::programs::xdp::Xdp
  7167. pub fn aya::programs::xdp::Xdp::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7168. impl core::ops::drop::Drop for aya::programs::xdp::Xdp
  7169. pub fn aya::programs::xdp::Xdp::drop(&mut self)
  7170. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp
  7171. pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7172. pub fn &'a aya::programs::xdp::Xdp::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::xdp::Xdp, aya::programs::ProgramError>
  7173. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp
  7174. pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7175. pub fn &'a mut aya::programs::xdp::Xdp::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::xdp::Xdp, aya::programs::ProgramError>
  7176. impl core::marker::Freeze for aya::programs::xdp::Xdp
  7177. impl core::marker::Send for aya::programs::xdp::Xdp
  7178. impl core::marker::Sync for aya::programs::xdp::Xdp
  7179. impl core::marker::Unpin for aya::programs::xdp::Xdp
  7180. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::Xdp
  7181. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::Xdp
  7182. impl<T, U> core::convert::Into<U> for aya::programs::xdp::Xdp where U: core::convert::From<T>
  7183. pub fn aya::programs::xdp::Xdp::into(self) -> U
  7184. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::Xdp where U: core::convert::Into<T>
  7185. pub type aya::programs::xdp::Xdp::Error = core::convert::Infallible
  7186. pub fn aya::programs::xdp::Xdp::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7187. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::Xdp where U: core::convert::TryFrom<T>
  7188. pub type aya::programs::xdp::Xdp::Error = <U as core::convert::TryFrom<T>>::Error
  7189. pub fn aya::programs::xdp::Xdp::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7190. impl<T> core::any::Any for aya::programs::xdp::Xdp where T: 'static + ?core::marker::Sized
  7191. pub fn aya::programs::xdp::Xdp::type_id(&self) -> core::any::TypeId
  7192. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::Xdp where T: ?core::marker::Sized
  7193. pub fn aya::programs::xdp::Xdp::borrow(&self) -> &T
  7194. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::Xdp where T: ?core::marker::Sized
  7195. pub fn aya::programs::xdp::Xdp::borrow_mut(&mut self) -> &mut T
  7196. impl<T> core::convert::From<T> for aya::programs::xdp::Xdp
  7197. pub fn aya::programs::xdp::Xdp::from(t: T) -> T
  7198. pub struct aya::programs::xdp::XdpFlags(_)
  7199. impl aya::programs::xdp::XdpFlags
  7200. pub const aya::programs::xdp::XdpFlags::DRV_MODE: Self
  7201. pub const aya::programs::xdp::XdpFlags::HW_MODE: Self
  7202. pub const aya::programs::xdp::XdpFlags::REPLACE: Self
  7203. pub const aya::programs::xdp::XdpFlags::SKB_MODE: Self
  7204. pub const aya::programs::xdp::XdpFlags::UPDATE_IF_NOEXIST: Self
  7205. impl aya::programs::xdp::XdpFlags
  7206. pub const fn aya::programs::xdp::XdpFlags::all() -> Self
  7207. pub const fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  7208. pub const fn aya::programs::xdp::XdpFlags::complement(self) -> Self
  7209. pub const fn aya::programs::xdp::XdpFlags::contains(&self, other: Self) -> bool
  7210. pub const fn aya::programs::xdp::XdpFlags::difference(self, other: Self) -> Self
  7211. pub const fn aya::programs::xdp::XdpFlags::empty() -> Self
  7212. pub const fn aya::programs::xdp::XdpFlags::from_bits(bits: u32) -> core::option::Option<Self>
  7213. pub const fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> Self
  7214. pub const fn aya::programs::xdp::XdpFlags::from_bits_truncate(bits: u32) -> Self
  7215. pub fn aya::programs::xdp::XdpFlags::from_name(name: &str) -> core::option::Option<Self>
  7216. pub fn aya::programs::xdp::XdpFlags::insert(&mut self, other: Self)
  7217. pub const fn aya::programs::xdp::XdpFlags::intersection(self, other: Self) -> Self
  7218. pub const fn aya::programs::xdp::XdpFlags::intersects(&self, other: Self) -> bool
  7219. pub const fn aya::programs::xdp::XdpFlags::is_all(&self) -> bool
  7220. pub const fn aya::programs::xdp::XdpFlags::is_empty(&self) -> bool
  7221. pub fn aya::programs::xdp::XdpFlags::remove(&mut self, other: Self)
  7222. pub fn aya::programs::xdp::XdpFlags::set(&mut self, other: Self, value: bool)
  7223. pub const fn aya::programs::xdp::XdpFlags::symmetric_difference(self, other: Self) -> Self
  7224. pub fn aya::programs::xdp::XdpFlags::toggle(&mut self, other: Self)
  7225. pub const fn aya::programs::xdp::XdpFlags::union(self, other: Self) -> Self
  7226. impl aya::programs::xdp::XdpFlags
  7227. pub const fn aya::programs::xdp::XdpFlags::iter(&self) -> bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  7228. pub const fn aya::programs::xdp::XdpFlags::iter_names(&self) -> bitflags::iter::IterNames<aya::programs::xdp::XdpFlags>
  7229. impl bitflags::traits::Flags for aya::programs::xdp::XdpFlags
  7230. pub type aya::programs::xdp::XdpFlags::Bits = u32
  7231. pub const aya::programs::xdp::XdpFlags::FLAGS: &'static [bitflags::traits::Flag<aya::programs::xdp::XdpFlags>]
  7232. pub fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  7233. pub fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> aya::programs::xdp::XdpFlags
  7234. impl bitflags::traits::PublicFlags for aya::programs::xdp::XdpFlags
  7235. pub type aya::programs::xdp::XdpFlags::Internal = InternalBitFlags
  7236. pub type aya::programs::xdp::XdpFlags::Primitive = u32
  7237. impl core::clone::Clone for aya::programs::xdp::XdpFlags
  7238. pub fn aya::programs::xdp::XdpFlags::clone(&self) -> aya::programs::xdp::XdpFlags
  7239. impl core::default::Default for aya::programs::xdp::XdpFlags
  7240. pub fn aya::programs::xdp::XdpFlags::default() -> aya::programs::xdp::XdpFlags
  7241. impl core::fmt::Binary for aya::programs::xdp::XdpFlags
  7242. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7243. impl core::fmt::Debug for aya::programs::xdp::XdpFlags
  7244. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7245. impl core::fmt::LowerHex for aya::programs::xdp::XdpFlags
  7246. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7247. impl core::fmt::Octal for aya::programs::xdp::XdpFlags
  7248. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7249. impl core::fmt::UpperHex for aya::programs::xdp::XdpFlags
  7250. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7251. impl core::iter::traits::collect::Extend<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7252. pub fn aya::programs::xdp::XdpFlags::extend<T: core::iter::traits::collect::IntoIterator<Item = Self>>(&mut self, iterator: T)
  7253. impl core::iter::traits::collect::FromIterator<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7254. pub fn aya::programs::xdp::XdpFlags::from_iter<T: core::iter::traits::collect::IntoIterator<Item = Self>>(iterator: T) -> Self
  7255. impl core::iter::traits::collect::IntoIterator for aya::programs::xdp::XdpFlags
  7256. pub type aya::programs::xdp::XdpFlags::IntoIter = bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  7257. pub type aya::programs::xdp::XdpFlags::Item = aya::programs::xdp::XdpFlags
  7258. pub fn aya::programs::xdp::XdpFlags::into_iter(self) -> Self::IntoIter
  7259. impl core::marker::Copy for aya::programs::xdp::XdpFlags
  7260. impl core::ops::arith::Sub for aya::programs::xdp::XdpFlags
  7261. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7262. pub fn aya::programs::xdp::XdpFlags::sub(self, other: Self) -> Self
  7263. impl core::ops::arith::SubAssign for aya::programs::xdp::XdpFlags
  7264. pub fn aya::programs::xdp::XdpFlags::sub_assign(&mut self, other: Self)
  7265. impl core::ops::bit::BitAnd for aya::programs::xdp::XdpFlags
  7266. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7267. pub fn aya::programs::xdp::XdpFlags::bitand(self, other: Self) -> Self
  7268. impl core::ops::bit::BitAndAssign for aya::programs::xdp::XdpFlags
  7269. pub fn aya::programs::xdp::XdpFlags::bitand_assign(&mut self, other: Self)
  7270. impl core::ops::bit::BitOr for aya::programs::xdp::XdpFlags
  7271. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7272. pub fn aya::programs::xdp::XdpFlags::bitor(self, other: aya::programs::xdp::XdpFlags) -> Self
  7273. impl core::ops::bit::BitOrAssign for aya::programs::xdp::XdpFlags
  7274. pub fn aya::programs::xdp::XdpFlags::bitor_assign(&mut self, other: Self)
  7275. impl core::ops::bit::BitXor for aya::programs::xdp::XdpFlags
  7276. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7277. pub fn aya::programs::xdp::XdpFlags::bitxor(self, other: Self) -> Self
  7278. impl core::ops::bit::BitXorAssign for aya::programs::xdp::XdpFlags
  7279. pub fn aya::programs::xdp::XdpFlags::bitxor_assign(&mut self, other: Self)
  7280. impl core::ops::bit::Not for aya::programs::xdp::XdpFlags
  7281. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7282. pub fn aya::programs::xdp::XdpFlags::not(self) -> Self
  7283. impl core::marker::Freeze for aya::programs::xdp::XdpFlags
  7284. impl core::marker::Send for aya::programs::xdp::XdpFlags
  7285. impl core::marker::Sync for aya::programs::xdp::XdpFlags
  7286. impl core::marker::Unpin for aya::programs::xdp::XdpFlags
  7287. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpFlags
  7288. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpFlags
  7289. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpFlags where U: core::convert::From<T>
  7290. pub fn aya::programs::xdp::XdpFlags::into(self) -> U
  7291. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpFlags where U: core::convert::Into<T>
  7292. pub type aya::programs::xdp::XdpFlags::Error = core::convert::Infallible
  7293. pub fn aya::programs::xdp::XdpFlags::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7294. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpFlags where U: core::convert::TryFrom<T>
  7295. pub type aya::programs::xdp::XdpFlags::Error = <U as core::convert::TryFrom<T>>::Error
  7296. pub fn aya::programs::xdp::XdpFlags::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7297. impl<T> alloc::borrow::ToOwned for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  7298. pub type aya::programs::xdp::XdpFlags::Owned = T
  7299. pub fn aya::programs::xdp::XdpFlags::clone_into(&self, target: &mut T)
  7300. pub fn aya::programs::xdp::XdpFlags::to_owned(&self) -> T
  7301. impl<T> core::any::Any for aya::programs::xdp::XdpFlags where T: 'static + ?core::marker::Sized
  7302. pub fn aya::programs::xdp::XdpFlags::type_id(&self) -> core::any::TypeId
  7303. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpFlags where T: ?core::marker::Sized
  7304. pub fn aya::programs::xdp::XdpFlags::borrow(&self) -> &T
  7305. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpFlags where T: ?core::marker::Sized
  7306. pub fn aya::programs::xdp::XdpFlags::borrow_mut(&mut self) -> &mut T
  7307. impl<T> core::clone::CloneToUninit for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  7308. pub unsafe fn aya::programs::xdp::XdpFlags::clone_to_uninit(&self, dest: *mut u8)
  7309. impl<T> core::convert::From<T> for aya::programs::xdp::XdpFlags
  7310. pub fn aya::programs::xdp::XdpFlags::from(t: T) -> T
  7311. pub struct aya::programs::xdp::XdpLink(_)
  7312. impl aya::programs::links::Link for aya::programs::xdp::XdpLink
  7313. pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId
  7314. pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7315. pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id
  7316. impl core::cmp::Eq for aya::programs::xdp::XdpLink
  7317. impl core::cmp::PartialEq for aya::programs::xdp::XdpLink
  7318. pub fn aya::programs::xdp::XdpLink::eq(&self, other: &Self) -> bool
  7319. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::xdp::XdpLink
  7320. pub type aya::programs::xdp::XdpLink::Error = aya::programs::links::LinkError
  7321. pub fn aya::programs::xdp::XdpLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  7322. impl core::convert::TryFrom<aya::programs::xdp::XdpLink> for aya::programs::links::FdLink
  7323. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  7324. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::xdp::XdpLink) -> core::result::Result<Self, Self::Error>
  7325. impl core::fmt::Debug for aya::programs::xdp::XdpLink
  7326. pub fn aya::programs::xdp::XdpLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7327. impl core::hash::Hash for aya::programs::xdp::XdpLink
  7328. pub fn aya::programs::xdp::XdpLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  7329. impl core::ops::drop::Drop for aya::programs::xdp::XdpLink
  7330. pub fn aya::programs::xdp::XdpLink::drop(&mut self)
  7331. impl equivalent::Equivalent<aya::programs::xdp::XdpLink> for aya::programs::xdp::XdpLinkId
  7332. pub fn aya::programs::xdp::XdpLinkId::equivalent(&self, key: &aya::programs::xdp::XdpLink) -> bool
  7333. impl core::marker::Freeze for aya::programs::xdp::XdpLink
  7334. impl core::marker::Send for aya::programs::xdp::XdpLink
  7335. impl core::marker::Sync for aya::programs::xdp::XdpLink
  7336. impl core::marker::Unpin for aya::programs::xdp::XdpLink
  7337. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpLink
  7338. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpLink
  7339. impl<Q, K> equivalent::Equivalent<K> for aya::programs::xdp::XdpLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  7340. pub fn aya::programs::xdp::XdpLink::equivalent(&self, key: &K) -> bool
  7341. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpLink where U: core::convert::From<T>
  7342. pub fn aya::programs::xdp::XdpLink::into(self) -> U
  7343. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpLink where U: core::convert::Into<T>
  7344. pub type aya::programs::xdp::XdpLink::Error = core::convert::Infallible
  7345. pub fn aya::programs::xdp::XdpLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7346. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpLink where U: core::convert::TryFrom<T>
  7347. pub type aya::programs::xdp::XdpLink::Error = <U as core::convert::TryFrom<T>>::Error
  7348. pub fn aya::programs::xdp::XdpLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7349. impl<T> core::any::Any for aya::programs::xdp::XdpLink where T: 'static + ?core::marker::Sized
  7350. pub fn aya::programs::xdp::XdpLink::type_id(&self) -> core::any::TypeId
  7351. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpLink where T: ?core::marker::Sized
  7352. pub fn aya::programs::xdp::XdpLink::borrow(&self) -> &T
  7353. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpLink where T: ?core::marker::Sized
  7354. pub fn aya::programs::xdp::XdpLink::borrow_mut(&mut self) -> &mut T
  7355. impl<T> core::convert::From<T> for aya::programs::xdp::XdpLink
  7356. pub fn aya::programs::xdp::XdpLink::from(t: T) -> T
  7357. pub struct aya::programs::xdp::XdpLinkId(_)
  7358. impl core::cmp::Eq for aya::programs::xdp::XdpLinkId
  7359. impl core::cmp::PartialEq for aya::programs::xdp::XdpLinkId
  7360. pub fn aya::programs::xdp::XdpLinkId::eq(&self, other: &aya::programs::xdp::XdpLinkId) -> bool
  7361. impl core::fmt::Debug for aya::programs::xdp::XdpLinkId
  7362. pub fn aya::programs::xdp::XdpLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7363. impl core::hash::Hash for aya::programs::xdp::XdpLinkId
  7364. pub fn aya::programs::xdp::XdpLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  7365. impl core::marker::StructuralPartialEq for aya::programs::xdp::XdpLinkId
  7366. impl equivalent::Equivalent<aya::programs::xdp::XdpLink> for aya::programs::xdp::XdpLinkId
  7367. pub fn aya::programs::xdp::XdpLinkId::equivalent(&self, key: &aya::programs::xdp::XdpLink) -> bool
  7368. impl core::marker::Freeze for aya::programs::xdp::XdpLinkId
  7369. impl core::marker::Send for aya::programs::xdp::XdpLinkId
  7370. impl core::marker::Sync for aya::programs::xdp::XdpLinkId
  7371. impl core::marker::Unpin for aya::programs::xdp::XdpLinkId
  7372. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpLinkId
  7373. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpLinkId
  7374. impl<Q, K> equivalent::Equivalent<K> for aya::programs::xdp::XdpLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  7375. pub fn aya::programs::xdp::XdpLinkId::equivalent(&self, key: &K) -> bool
  7376. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpLinkId where U: core::convert::From<T>
  7377. pub fn aya::programs::xdp::XdpLinkId::into(self) -> U
  7378. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpLinkId where U: core::convert::Into<T>
  7379. pub type aya::programs::xdp::XdpLinkId::Error = core::convert::Infallible
  7380. pub fn aya::programs::xdp::XdpLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7381. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpLinkId where U: core::convert::TryFrom<T>
  7382. pub type aya::programs::xdp::XdpLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  7383. pub fn aya::programs::xdp::XdpLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7384. impl<T> core::any::Any for aya::programs::xdp::XdpLinkId where T: 'static + ?core::marker::Sized
  7385. pub fn aya::programs::xdp::XdpLinkId::type_id(&self) -> core::any::TypeId
  7386. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpLinkId where T: ?core::marker::Sized
  7387. pub fn aya::programs::xdp::XdpLinkId::borrow(&self) -> &T
  7388. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpLinkId where T: ?core::marker::Sized
  7389. pub fn aya::programs::xdp::XdpLinkId::borrow_mut(&mut self) -> &mut T
  7390. impl<T> core::convert::From<T> for aya::programs::xdp::XdpLinkId
  7391. pub fn aya::programs::xdp::XdpLinkId::from(t: T) -> T
  7392. pub enum aya::programs::CgroupAttachMode
  7393. pub aya::programs::CgroupAttachMode::AllowMultiple
  7394. pub aya::programs::CgroupAttachMode::AllowOverride
  7395. pub aya::programs::CgroupAttachMode::Single
  7396. impl core::clone::Clone for aya::programs::links::CgroupAttachMode
  7397. pub fn aya::programs::links::CgroupAttachMode::clone(&self) -> aya::programs::links::CgroupAttachMode
  7398. impl core::convert::From<aya::programs::links::CgroupAttachMode> for u32
  7399. pub fn u32::from(mode: aya::programs::links::CgroupAttachMode) -> Self
  7400. impl core::default::Default for aya::programs::links::CgroupAttachMode
  7401. pub fn aya::programs::links::CgroupAttachMode::default() -> aya::programs::links::CgroupAttachMode
  7402. impl core::fmt::Debug for aya::programs::links::CgroupAttachMode
  7403. pub fn aya::programs::links::CgroupAttachMode::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7404. impl core::marker::Copy for aya::programs::links::CgroupAttachMode
  7405. impl core::marker::Freeze for aya::programs::links::CgroupAttachMode
  7406. impl core::marker::Send for aya::programs::links::CgroupAttachMode
  7407. impl core::marker::Sync for aya::programs::links::CgroupAttachMode
  7408. impl core::marker::Unpin for aya::programs::links::CgroupAttachMode
  7409. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::CgroupAttachMode
  7410. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::CgroupAttachMode
  7411. impl<T, U> core::convert::Into<U> for aya::programs::links::CgroupAttachMode where U: core::convert::From<T>
  7412. pub fn aya::programs::links::CgroupAttachMode::into(self) -> U
  7413. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::CgroupAttachMode where U: core::convert::Into<T>
  7414. pub type aya::programs::links::CgroupAttachMode::Error = core::convert::Infallible
  7415. pub fn aya::programs::links::CgroupAttachMode::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7416. impl<T, U> core::convert::TryInto<U> for aya::programs::links::CgroupAttachMode where U: core::convert::TryFrom<T>
  7417. pub type aya::programs::links::CgroupAttachMode::Error = <U as core::convert::TryFrom<T>>::Error
  7418. pub fn aya::programs::links::CgroupAttachMode::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7419. impl<T> alloc::borrow::ToOwned for aya::programs::links::CgroupAttachMode where T: core::clone::Clone
  7420. pub type aya::programs::links::CgroupAttachMode::Owned = T
  7421. pub fn aya::programs::links::CgroupAttachMode::clone_into(&self, target: &mut T)
  7422. pub fn aya::programs::links::CgroupAttachMode::to_owned(&self) -> T
  7423. impl<T> core::any::Any for aya::programs::links::CgroupAttachMode where T: 'static + ?core::marker::Sized
  7424. pub fn aya::programs::links::CgroupAttachMode::type_id(&self) -> core::any::TypeId
  7425. impl<T> core::borrow::Borrow<T> for aya::programs::links::CgroupAttachMode where T: ?core::marker::Sized
  7426. pub fn aya::programs::links::CgroupAttachMode::borrow(&self) -> &T
  7427. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::CgroupAttachMode where T: ?core::marker::Sized
  7428. pub fn aya::programs::links::CgroupAttachMode::borrow_mut(&mut self) -> &mut T
  7429. impl<T> core::clone::CloneToUninit for aya::programs::links::CgroupAttachMode where T: core::clone::Clone
  7430. pub unsafe fn aya::programs::links::CgroupAttachMode::clone_to_uninit(&self, dest: *mut u8)
  7431. impl<T> core::convert::From<T> for aya::programs::links::CgroupAttachMode
  7432. pub fn aya::programs::links::CgroupAttachMode::from(t: T) -> T
  7433. pub enum aya::programs::CgroupSkbAttachType
  7434. pub aya::programs::CgroupSkbAttachType::Egress
  7435. pub aya::programs::CgroupSkbAttachType::Ingress
  7436. impl core::clone::Clone for aya::programs::cgroup_skb::CgroupSkbAttachType
  7437. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone(&self) -> aya::programs::cgroup_skb::CgroupSkbAttachType
  7438. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbAttachType
  7439. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7440. impl core::marker::Copy for aya::programs::cgroup_skb::CgroupSkbAttachType
  7441. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkbAttachType
  7442. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbAttachType
  7443. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbAttachType
  7444. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbAttachType
  7445. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  7446. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  7447. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::From<T>
  7448. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::into(self) -> U
  7449. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::Into<T>
  7450. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = core::convert::Infallible
  7451. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7452. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::TryFrom<T>
  7453. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  7454. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7455. impl<T> alloc::borrow::ToOwned for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  7456. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Owned = T
  7457. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_into(&self, target: &mut T)
  7458. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::to_owned(&self) -> T
  7459. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbAttachType where T: 'static + ?core::marker::Sized
  7460. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::type_id(&self) -> core::any::TypeId
  7461. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: ?core::marker::Sized
  7462. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow(&self) -> &T
  7463. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: ?core::marker::Sized
  7464. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow_mut(&mut self) -> &mut T
  7465. impl<T> core::clone::CloneToUninit for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  7466. pub unsafe fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_to_uninit(&self, dest: *mut u8)
  7467. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbAttachType
  7468. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::from(t: T) -> T
  7469. pub enum aya::programs::ExtensionError
  7470. pub aya::programs::ExtensionError::NoBTF
  7471. impl core::convert::From<aya::programs::extension::ExtensionError> for aya::programs::ProgramError
  7472. pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self
  7473. impl core::error::Error for aya::programs::extension::ExtensionError
  7474. impl core::fmt::Debug for aya::programs::extension::ExtensionError
  7475. pub fn aya::programs::extension::ExtensionError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7476. impl core::fmt::Display for aya::programs::extension::ExtensionError
  7477. pub fn aya::programs::extension::ExtensionError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7478. impl core::marker::Freeze for aya::programs::extension::ExtensionError
  7479. impl core::marker::Send for aya::programs::extension::ExtensionError
  7480. impl core::marker::Sync for aya::programs::extension::ExtensionError
  7481. impl core::marker::Unpin for aya::programs::extension::ExtensionError
  7482. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionError
  7483. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionError
  7484. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionError where U: core::convert::From<T>
  7485. pub fn aya::programs::extension::ExtensionError::into(self) -> U
  7486. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionError where U: core::convert::Into<T>
  7487. pub type aya::programs::extension::ExtensionError::Error = core::convert::Infallible
  7488. pub fn aya::programs::extension::ExtensionError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7489. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionError where U: core::convert::TryFrom<T>
  7490. pub type aya::programs::extension::ExtensionError::Error = <U as core::convert::TryFrom<T>>::Error
  7491. pub fn aya::programs::extension::ExtensionError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7492. impl<T> alloc::string::ToString for aya::programs::extension::ExtensionError where T: core::fmt::Display + ?core::marker::Sized
  7493. pub fn aya::programs::extension::ExtensionError::to_string(&self) -> alloc::string::String
  7494. impl<T> core::any::Any for aya::programs::extension::ExtensionError where T: 'static + ?core::marker::Sized
  7495. pub fn aya::programs::extension::ExtensionError::type_id(&self) -> core::any::TypeId
  7496. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionError where T: ?core::marker::Sized
  7497. pub fn aya::programs::extension::ExtensionError::borrow(&self) -> &T
  7498. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionError where T: ?core::marker::Sized
  7499. pub fn aya::programs::extension::ExtensionError::borrow_mut(&mut self) -> &mut T
  7500. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionError
  7501. pub fn aya::programs::extension::ExtensionError::from(t: T) -> T
  7502. pub enum aya::programs::KProbeError
  7503. pub aya::programs::KProbeError::FileError
  7504. pub aya::programs::KProbeError::FileError::filename: std::path::PathBuf
  7505. pub aya::programs::KProbeError::FileError::io_error: std::io::error::Error
  7506. impl core::convert::From<aya::programs::kprobe::KProbeError> for aya::programs::ProgramError
  7507. pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self
  7508. impl core::error::Error for aya::programs::kprobe::KProbeError
  7509. pub fn aya::programs::kprobe::KProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  7510. impl core::fmt::Debug for aya::programs::kprobe::KProbeError
  7511. pub fn aya::programs::kprobe::KProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7512. impl core::fmt::Display for aya::programs::kprobe::KProbeError
  7513. pub fn aya::programs::kprobe::KProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7514. impl core::marker::Freeze for aya::programs::kprobe::KProbeError
  7515. impl core::marker::Send for aya::programs::kprobe::KProbeError
  7516. impl core::marker::Sync for aya::programs::kprobe::KProbeError
  7517. impl core::marker::Unpin for aya::programs::kprobe::KProbeError
  7518. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeError
  7519. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeError
  7520. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeError where U: core::convert::From<T>
  7521. pub fn aya::programs::kprobe::KProbeError::into(self) -> U
  7522. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeError where U: core::convert::Into<T>
  7523. pub type aya::programs::kprobe::KProbeError::Error = core::convert::Infallible
  7524. pub fn aya::programs::kprobe::KProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7525. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeError where U: core::convert::TryFrom<T>
  7526. pub type aya::programs::kprobe::KProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  7527. pub fn aya::programs::kprobe::KProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7528. impl<T> alloc::string::ToString for aya::programs::kprobe::KProbeError where T: core::fmt::Display + ?core::marker::Sized
  7529. pub fn aya::programs::kprobe::KProbeError::to_string(&self) -> alloc::string::String
  7530. impl<T> core::any::Any for aya::programs::kprobe::KProbeError where T: 'static + ?core::marker::Sized
  7531. pub fn aya::programs::kprobe::KProbeError::type_id(&self) -> core::any::TypeId
  7532. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeError where T: ?core::marker::Sized
  7533. pub fn aya::programs::kprobe::KProbeError::borrow(&self) -> &T
  7534. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeError where T: ?core::marker::Sized
  7535. pub fn aya::programs::kprobe::KProbeError::borrow_mut(&mut self) -> &mut T
  7536. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeError
  7537. pub fn aya::programs::kprobe::KProbeError::from(t: T) -> T
  7538. pub enum aya::programs::PerfEventScope
  7539. pub aya::programs::PerfEventScope::AllProcessesOneCpu
  7540. pub aya::programs::PerfEventScope::AllProcessesOneCpu::cpu: u32
  7541. pub aya::programs::PerfEventScope::CallingProcessAnyCpu
  7542. pub aya::programs::PerfEventScope::CallingProcessOneCpu
  7543. pub aya::programs::PerfEventScope::CallingProcessOneCpu::cpu: u32
  7544. pub aya::programs::PerfEventScope::OneProcessAnyCpu
  7545. pub aya::programs::PerfEventScope::OneProcessAnyCpu::pid: u32
  7546. pub aya::programs::PerfEventScope::OneProcessOneCpu
  7547. pub aya::programs::PerfEventScope::OneProcessOneCpu::cpu: u32
  7548. pub aya::programs::PerfEventScope::OneProcessOneCpu::pid: u32
  7549. impl core::clone::Clone for aya::programs::perf_event::PerfEventScope
  7550. pub fn aya::programs::perf_event::PerfEventScope::clone(&self) -> aya::programs::perf_event::PerfEventScope
  7551. impl core::fmt::Debug for aya::programs::perf_event::PerfEventScope
  7552. pub fn aya::programs::perf_event::PerfEventScope::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7553. impl core::marker::Freeze for aya::programs::perf_event::PerfEventScope
  7554. impl core::marker::Send for aya::programs::perf_event::PerfEventScope
  7555. impl core::marker::Sync for aya::programs::perf_event::PerfEventScope
  7556. impl core::marker::Unpin for aya::programs::perf_event::PerfEventScope
  7557. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventScope
  7558. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventScope
  7559. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::From<T>
  7560. pub fn aya::programs::perf_event::PerfEventScope::into(self) -> U
  7561. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::Into<T>
  7562. pub type aya::programs::perf_event::PerfEventScope::Error = core::convert::Infallible
  7563. pub fn aya::programs::perf_event::PerfEventScope::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7564. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::TryFrom<T>
  7565. pub type aya::programs::perf_event::PerfEventScope::Error = <U as core::convert::TryFrom<T>>::Error
  7566. pub fn aya::programs::perf_event::PerfEventScope::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7567. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  7568. pub type aya::programs::perf_event::PerfEventScope::Owned = T
  7569. pub fn aya::programs::perf_event::PerfEventScope::clone_into(&self, target: &mut T)
  7570. pub fn aya::programs::perf_event::PerfEventScope::to_owned(&self) -> T
  7571. impl<T> core::any::Any for aya::programs::perf_event::PerfEventScope where T: 'static + ?core::marker::Sized
  7572. pub fn aya::programs::perf_event::PerfEventScope::type_id(&self) -> core::any::TypeId
  7573. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventScope where T: ?core::marker::Sized
  7574. pub fn aya::programs::perf_event::PerfEventScope::borrow(&self) -> &T
  7575. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventScope where T: ?core::marker::Sized
  7576. pub fn aya::programs::perf_event::PerfEventScope::borrow_mut(&mut self) -> &mut T
  7577. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  7578. pub unsafe fn aya::programs::perf_event::PerfEventScope::clone_to_uninit(&self, dest: *mut u8)
  7579. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventScope
  7580. pub fn aya::programs::perf_event::PerfEventScope::from(t: T) -> T
  7581. #[repr(u32)] pub enum aya::programs::PerfTypeId
  7582. pub aya::programs::PerfTypeId::Breakpoint = 5
  7583. pub aya::programs::PerfTypeId::Hardware = 0
  7584. pub aya::programs::PerfTypeId::HwCache = 3
  7585. pub aya::programs::PerfTypeId::Raw = 4
  7586. pub aya::programs::PerfTypeId::Software = 1
  7587. pub aya::programs::PerfTypeId::TracePoint = 2
  7588. impl core::clone::Clone for aya::programs::perf_event::PerfTypeId
  7589. pub fn aya::programs::perf_event::PerfTypeId::clone(&self) -> aya::programs::perf_event::PerfTypeId
  7590. impl core::fmt::Debug for aya::programs::perf_event::PerfTypeId
  7591. pub fn aya::programs::perf_event::PerfTypeId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7592. impl core::marker::Freeze for aya::programs::perf_event::PerfTypeId
  7593. impl core::marker::Send for aya::programs::perf_event::PerfTypeId
  7594. impl core::marker::Sync for aya::programs::perf_event::PerfTypeId
  7595. impl core::marker::Unpin for aya::programs::perf_event::PerfTypeId
  7596. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfTypeId
  7597. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfTypeId
  7598. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::From<T>
  7599. pub fn aya::programs::perf_event::PerfTypeId::into(self) -> U
  7600. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::Into<T>
  7601. pub type aya::programs::perf_event::PerfTypeId::Error = core::convert::Infallible
  7602. pub fn aya::programs::perf_event::PerfTypeId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7603. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::TryFrom<T>
  7604. pub type aya::programs::perf_event::PerfTypeId::Error = <U as core::convert::TryFrom<T>>::Error
  7605. pub fn aya::programs::perf_event::PerfTypeId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7606. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  7607. pub type aya::programs::perf_event::PerfTypeId::Owned = T
  7608. pub fn aya::programs::perf_event::PerfTypeId::clone_into(&self, target: &mut T)
  7609. pub fn aya::programs::perf_event::PerfTypeId::to_owned(&self) -> T
  7610. impl<T> core::any::Any for aya::programs::perf_event::PerfTypeId where T: 'static + ?core::marker::Sized
  7611. pub fn aya::programs::perf_event::PerfTypeId::type_id(&self) -> core::any::TypeId
  7612. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfTypeId where T: ?core::marker::Sized
  7613. pub fn aya::programs::perf_event::PerfTypeId::borrow(&self) -> &T
  7614. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfTypeId where T: ?core::marker::Sized
  7615. pub fn aya::programs::perf_event::PerfTypeId::borrow_mut(&mut self) -> &mut T
  7616. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  7617. pub unsafe fn aya::programs::perf_event::PerfTypeId::clone_to_uninit(&self, dest: *mut u8)
  7618. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfTypeId
  7619. pub fn aya::programs::perf_event::PerfTypeId::from(t: T) -> T
  7620. pub enum aya::programs::ProbeKind
  7621. pub aya::programs::ProbeKind::KProbe
  7622. pub aya::programs::ProbeKind::KRetProbe
  7623. pub aya::programs::ProbeKind::UProbe
  7624. pub aya::programs::ProbeKind::URetProbe
  7625. impl core::clone::Clone for aya::programs::ProbeKind
  7626. pub fn aya::programs::ProbeKind::clone(&self) -> aya::programs::ProbeKind
  7627. impl core::fmt::Debug for aya::programs::ProbeKind
  7628. pub fn aya::programs::ProbeKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7629. impl core::marker::Copy for aya::programs::ProbeKind
  7630. impl core::marker::Freeze for aya::programs::ProbeKind
  7631. impl core::marker::Send for aya::programs::ProbeKind
  7632. impl core::marker::Sync for aya::programs::ProbeKind
  7633. impl core::marker::Unpin for aya::programs::ProbeKind
  7634. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProbeKind
  7635. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProbeKind
  7636. impl<T, U> core::convert::Into<U> for aya::programs::ProbeKind where U: core::convert::From<T>
  7637. pub fn aya::programs::ProbeKind::into(self) -> U
  7638. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProbeKind where U: core::convert::Into<T>
  7639. pub type aya::programs::ProbeKind::Error = core::convert::Infallible
  7640. pub fn aya::programs::ProbeKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7641. impl<T, U> core::convert::TryInto<U> for aya::programs::ProbeKind where U: core::convert::TryFrom<T>
  7642. pub type aya::programs::ProbeKind::Error = <U as core::convert::TryFrom<T>>::Error
  7643. pub fn aya::programs::ProbeKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7644. impl<T> alloc::borrow::ToOwned for aya::programs::ProbeKind where T: core::clone::Clone
  7645. pub type aya::programs::ProbeKind::Owned = T
  7646. pub fn aya::programs::ProbeKind::clone_into(&self, target: &mut T)
  7647. pub fn aya::programs::ProbeKind::to_owned(&self) -> T
  7648. impl<T> core::any::Any for aya::programs::ProbeKind where T: 'static + ?core::marker::Sized
  7649. pub fn aya::programs::ProbeKind::type_id(&self) -> core::any::TypeId
  7650. impl<T> core::borrow::Borrow<T> for aya::programs::ProbeKind where T: ?core::marker::Sized
  7651. pub fn aya::programs::ProbeKind::borrow(&self) -> &T
  7652. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProbeKind where T: ?core::marker::Sized
  7653. pub fn aya::programs::ProbeKind::borrow_mut(&mut self) -> &mut T
  7654. impl<T> core::clone::CloneToUninit for aya::programs::ProbeKind where T: core::clone::Clone
  7655. pub unsafe fn aya::programs::ProbeKind::clone_to_uninit(&self, dest: *mut u8)
  7656. impl<T> core::convert::From<T> for aya::programs::ProbeKind
  7657. pub fn aya::programs::ProbeKind::from(t: T) -> T
  7658. pub enum aya::programs::Program
  7659. pub aya::programs::Program::BtfTracePoint(aya::programs::tp_btf::BtfTracePoint)
  7660. pub aya::programs::Program::CgroupDevice(aya::programs::cgroup_device::CgroupDevice)
  7661. pub aya::programs::Program::CgroupSkb(aya::programs::cgroup_skb::CgroupSkb)
  7662. pub aya::programs::Program::CgroupSock(aya::programs::cgroup_sock::CgroupSock)
  7663. pub aya::programs::Program::CgroupSockAddr(aya::programs::cgroup_sock_addr::CgroupSockAddr)
  7664. pub aya::programs::Program::CgroupSockopt(aya::programs::cgroup_sockopt::CgroupSockopt)
  7665. pub aya::programs::Program::CgroupSysctl(aya::programs::cgroup_sysctl::CgroupSysctl)
  7666. pub aya::programs::Program::Extension(aya::programs::extension::Extension)
  7667. pub aya::programs::Program::FEntry(aya::programs::fentry::FEntry)
  7668. pub aya::programs::Program::FExit(aya::programs::fexit::FExit)
  7669. pub aya::programs::Program::FlowDissector(aya::programs::flow_dissector::FlowDissector)
  7670. pub aya::programs::Program::Iter(aya::programs::iter::Iter)
  7671. pub aya::programs::Program::KProbe(aya::programs::kprobe::KProbe)
  7672. pub aya::programs::Program::LircMode2(aya::programs::lirc_mode2::LircMode2)
  7673. pub aya::programs::Program::Lsm(aya::programs::lsm::Lsm)
  7674. pub aya::programs::Program::PerfEvent(aya::programs::perf_event::PerfEvent)
  7675. pub aya::programs::Program::RawTracePoint(aya::programs::raw_trace_point::RawTracePoint)
  7676. pub aya::programs::Program::SchedClassifier(aya::programs::tc::SchedClassifier)
  7677. pub aya::programs::Program::SkLookup(aya::programs::sk_lookup::SkLookup)
  7678. pub aya::programs::Program::SkMsg(aya::programs::sk_msg::SkMsg)
  7679. pub aya::programs::Program::SkSkb(aya::programs::sk_skb::SkSkb)
  7680. pub aya::programs::Program::SockOps(aya::programs::sock_ops::SockOps)
  7681. pub aya::programs::Program::SocketFilter(aya::programs::socket_filter::SocketFilter)
  7682. pub aya::programs::Program::TracePoint(aya::programs::trace_point::TracePoint)
  7683. pub aya::programs::Program::UProbe(aya::programs::uprobe::UProbe)
  7684. pub aya::programs::Program::Xdp(aya::programs::xdp::Xdp)
  7685. impl aya::programs::Program
  7686. pub fn aya::programs::Program::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  7687. pub fn aya::programs::Program::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  7688. pub fn aya::programs::Program::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  7689. pub fn aya::programs::Program::prog_type(&self) -> aya::programs::ProgramType
  7690. pub fn aya::programs::Program::unload(self) -> core::result::Result<(), aya::programs::ProgramError>
  7691. impl core::fmt::Debug for aya::programs::Program
  7692. pub fn aya::programs::Program::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7693. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice
  7694. pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  7695. pub fn &'a aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  7696. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb
  7697. pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  7698. pub fn &'a aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  7699. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock
  7700. pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  7701. pub fn &'a aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  7702. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr
  7703. pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  7704. pub fn &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  7705. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt
  7706. pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  7707. pub fn &'a aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  7708. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl
  7709. pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  7710. pub fn &'a aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  7711. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension
  7712. pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError
  7713. pub fn &'a aya::programs::extension::Extension::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::extension::Extension, aya::programs::ProgramError>
  7714. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry
  7715. pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  7716. pub fn &'a aya::programs::fentry::FEntry::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fentry::FEntry, aya::programs::ProgramError>
  7717. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit
  7718. pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  7719. pub fn &'a aya::programs::fexit::FExit::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fexit::FExit, aya::programs::ProgramError>
  7720. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::flow_dissector::FlowDissector
  7721. pub type &'a aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  7722. pub fn &'a aya::programs::flow_dissector::FlowDissector::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  7723. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::iter::Iter
  7724. pub type &'a aya::programs::iter::Iter::Error = aya::programs::ProgramError
  7725. pub fn &'a aya::programs::iter::Iter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::iter::Iter, aya::programs::ProgramError>
  7726. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe
  7727. pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  7728. pub fn &'a aya::programs::kprobe::KProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  7729. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2
  7730. pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  7731. pub fn &'a aya::programs::lirc_mode2::LircMode2::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  7732. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm
  7733. pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  7734. pub fn &'a aya::programs::lsm::Lsm::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lsm::Lsm, aya::programs::ProgramError>
  7735. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent
  7736. pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  7737. pub fn &'a aya::programs::perf_event::PerfEvent::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  7738. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::raw_trace_point::RawTracePoint
  7739. pub type &'a aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  7740. pub fn &'a aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  7741. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_lookup::SkLookup
  7742. pub type &'a aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  7743. pub fn &'a aya::programs::sk_lookup::SkLookup::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  7744. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_msg::SkMsg
  7745. pub type &'a aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  7746. pub fn &'a aya::programs::sk_msg::SkMsg::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  7747. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_skb::SkSkb
  7748. pub type &'a aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  7749. pub fn &'a aya::programs::sk_skb::SkSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  7750. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sock_ops::SockOps
  7751. pub type &'a aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  7752. pub fn &'a aya::programs::sock_ops::SockOps::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  7753. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::socket_filter::SocketFilter
  7754. pub type &'a aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  7755. pub fn &'a aya::programs::socket_filter::SocketFilter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  7756. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier
  7757. pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  7758. pub fn &'a aya::programs::tc::SchedClassifier::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  7759. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint
  7760. pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  7761. pub fn &'a aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  7762. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint
  7763. pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  7764. pub fn &'a aya::programs::trace_point::TracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  7765. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe
  7766. pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  7767. pub fn &'a aya::programs::uprobe::UProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  7768. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp
  7769. pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7770. pub fn &'a aya::programs::xdp::Xdp::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::xdp::Xdp, aya::programs::ProgramError>
  7771. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice
  7772. pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  7773. pub fn &'a mut aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  7774. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb
  7775. pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  7776. pub fn &'a mut aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  7777. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock
  7778. pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  7779. pub fn &'a mut aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  7780. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr
  7781. pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  7782. pub fn &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  7783. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt
  7784. pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  7785. pub fn &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  7786. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl
  7787. pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  7788. pub fn &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  7789. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension
  7790. pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError
  7791. pub fn &'a mut aya::programs::extension::Extension::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::extension::Extension, aya::programs::ProgramError>
  7792. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry
  7793. pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  7794. pub fn &'a mut aya::programs::fentry::FEntry::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fentry::FEntry, aya::programs::ProgramError>
  7795. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit
  7796. pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  7797. pub fn &'a mut aya::programs::fexit::FExit::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fexit::FExit, aya::programs::ProgramError>
  7798. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::flow_dissector::FlowDissector
  7799. pub type &'a mut aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  7800. pub fn &'a mut aya::programs::flow_dissector::FlowDissector::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  7801. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::iter::Iter
  7802. pub type &'a mut aya::programs::iter::Iter::Error = aya::programs::ProgramError
  7803. pub fn &'a mut aya::programs::iter::Iter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::iter::Iter, aya::programs::ProgramError>
  7804. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe
  7805. pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  7806. pub fn &'a mut aya::programs::kprobe::KProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  7807. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2
  7808. pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  7809. pub fn &'a mut aya::programs::lirc_mode2::LircMode2::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  7810. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm
  7811. pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  7812. pub fn &'a mut aya::programs::lsm::Lsm::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lsm::Lsm, aya::programs::ProgramError>
  7813. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent
  7814. pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  7815. pub fn &'a mut aya::programs::perf_event::PerfEvent::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  7816. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::raw_trace_point::RawTracePoint
  7817. pub type &'a mut aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  7818. pub fn &'a mut aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  7819. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_lookup::SkLookup
  7820. pub type &'a mut aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  7821. pub fn &'a mut aya::programs::sk_lookup::SkLookup::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  7822. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_msg::SkMsg
  7823. pub type &'a mut aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  7824. pub fn &'a mut aya::programs::sk_msg::SkMsg::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  7825. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_skb::SkSkb
  7826. pub type &'a mut aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  7827. pub fn &'a mut aya::programs::sk_skb::SkSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  7828. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sock_ops::SockOps
  7829. pub type &'a mut aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  7830. pub fn &'a mut aya::programs::sock_ops::SockOps::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  7831. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::socket_filter::SocketFilter
  7832. pub type &'a mut aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  7833. pub fn &'a mut aya::programs::socket_filter::SocketFilter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  7834. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier
  7835. pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  7836. pub fn &'a mut aya::programs::tc::SchedClassifier::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  7837. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint
  7838. pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  7839. pub fn &'a mut aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  7840. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint
  7841. pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  7842. pub fn &'a mut aya::programs::trace_point::TracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  7843. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe
  7844. pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  7845. pub fn &'a mut aya::programs::uprobe::UProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  7846. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp
  7847. pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7848. pub fn &'a mut aya::programs::xdp::Xdp::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::xdp::Xdp, aya::programs::ProgramError>
  7849. impl core::marker::Freeze for aya::programs::Program
  7850. impl core::marker::Send for aya::programs::Program
  7851. impl core::marker::Sync for aya::programs::Program
  7852. impl core::marker::Unpin for aya::programs::Program
  7853. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::Program
  7854. impl core::panic::unwind_safe::UnwindSafe for aya::programs::Program
  7855. impl<T, U> core::convert::Into<U> for aya::programs::Program where U: core::convert::From<T>
  7856. pub fn aya::programs::Program::into(self) -> U
  7857. impl<T, U> core::convert::TryFrom<U> for aya::programs::Program where U: core::convert::Into<T>
  7858. pub type aya::programs::Program::Error = core::convert::Infallible
  7859. pub fn aya::programs::Program::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7860. impl<T, U> core::convert::TryInto<U> for aya::programs::Program where U: core::convert::TryFrom<T>
  7861. pub type aya::programs::Program::Error = <U as core::convert::TryFrom<T>>::Error
  7862. pub fn aya::programs::Program::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7863. impl<T> core::any::Any for aya::programs::Program where T: 'static + ?core::marker::Sized
  7864. pub fn aya::programs::Program::type_id(&self) -> core::any::TypeId
  7865. impl<T> core::borrow::Borrow<T> for aya::programs::Program where T: ?core::marker::Sized
  7866. pub fn aya::programs::Program::borrow(&self) -> &T
  7867. impl<T> core::borrow::BorrowMut<T> for aya::programs::Program where T: ?core::marker::Sized
  7868. pub fn aya::programs::Program::borrow_mut(&mut self) -> &mut T
  7869. impl<T> core::convert::From<T> for aya::programs::Program
  7870. pub fn aya::programs::Program::from(t: T) -> T
  7871. pub enum aya::programs::ProgramError
  7872. pub aya::programs::ProgramError::AlreadyAttached
  7873. pub aya::programs::ProgramError::AlreadyLoaded
  7874. pub aya::programs::ProgramError::AttachCookieNotSupported
  7875. pub aya::programs::ProgramError::Btf(aya_obj::btf::btf::BtfError)
  7876. pub aya::programs::ProgramError::ExtensionError(aya::programs::extension::ExtensionError)
  7877. pub aya::programs::ProgramError::IOError(std::io::error::Error)
  7878. pub aya::programs::ProgramError::InvalidName
  7879. pub aya::programs::ProgramError::InvalidName::name: alloc::string::String
  7880. pub aya::programs::ProgramError::KProbeError(aya::programs::kprobe::KProbeError)
  7881. pub aya::programs::ProgramError::LoadError
  7882. pub aya::programs::ProgramError::LoadError::io_error: std::io::error::Error
  7883. pub aya::programs::ProgramError::LoadError::verifier_log: aya_obj::VerifierLog
  7884. pub aya::programs::ProgramError::MapError(aya::maps::MapError)
  7885. pub aya::programs::ProgramError::NetlinkError(aya::sys::netlink::NetlinkError)
  7886. pub aya::programs::ProgramError::NotAttached
  7887. pub aya::programs::ProgramError::NotLoaded
  7888. pub aya::programs::ProgramError::SocketFilterError(aya::programs::socket_filter::SocketFilterError)
  7889. pub aya::programs::ProgramError::SyscallError(aya::sys::SyscallError)
  7890. pub aya::programs::ProgramError::TcError(aya::programs::tc::TcError)
  7891. pub aya::programs::ProgramError::TracePointError(aya::programs::trace_point::TracePointError)
  7892. pub aya::programs::ProgramError::UProbeError(aya::programs::uprobe::UProbeError)
  7893. pub aya::programs::ProgramError::UnexpectedProgramType
  7894. pub aya::programs::ProgramError::UnknownInterface
  7895. pub aya::programs::ProgramError::UnknownInterface::name: alloc::string::String
  7896. pub aya::programs::ProgramError::XdpError(aya::programs::xdp::XdpError)
  7897. impl core::convert::From<aya::maps::MapError> for aya::programs::ProgramError
  7898. pub fn aya::programs::ProgramError::from(source: aya::maps::MapError) -> Self
  7899. impl core::convert::From<aya::programs::ProgramError> for aya::EbpfError
  7900. pub fn aya::EbpfError::from(source: aya::programs::ProgramError) -> Self
  7901. impl core::convert::From<aya::programs::extension::ExtensionError> for aya::programs::ProgramError
  7902. pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self
  7903. impl core::convert::From<aya::programs::kprobe::KProbeError> for aya::programs::ProgramError
  7904. pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self
  7905. impl core::convert::From<aya::programs::socket_filter::SocketFilterError> for aya::programs::ProgramError
  7906. pub fn aya::programs::ProgramError::from(source: aya::programs::socket_filter::SocketFilterError) -> Self
  7907. impl core::convert::From<aya::programs::tc::TcError> for aya::programs::ProgramError
  7908. pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self
  7909. impl core::convert::From<aya::programs::trace_point::TracePointError> for aya::programs::ProgramError
  7910. pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self
  7911. impl core::convert::From<aya::programs::uprobe::UProbeError> for aya::programs::ProgramError
  7912. pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self
  7913. impl core::convert::From<aya::programs::xdp::XdpError> for aya::programs::ProgramError
  7914. pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self
  7915. impl core::convert::From<aya::sys::SyscallError> for aya::programs::ProgramError
  7916. pub fn aya::programs::ProgramError::from(source: aya::sys::SyscallError) -> Self
  7917. impl core::convert::From<aya_obj::btf::btf::BtfError> for aya::programs::ProgramError
  7918. pub fn aya::programs::ProgramError::from(source: aya_obj::btf::btf::BtfError) -> Self
  7919. impl core::convert::From<std::io::error::Error> for aya::programs::ProgramError
  7920. pub fn aya::programs::ProgramError::from(source: std::io::error::Error) -> Self
  7921. impl core::error::Error for aya::programs::ProgramError
  7922. pub fn aya::programs::ProgramError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  7923. impl core::fmt::Debug for aya::programs::ProgramError
  7924. pub fn aya::programs::ProgramError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7925. impl core::fmt::Display for aya::programs::ProgramError
  7926. pub fn aya::programs::ProgramError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7927. impl core::marker::Freeze for aya::programs::ProgramError
  7928. impl core::marker::Send for aya::programs::ProgramError
  7929. impl core::marker::Sync for aya::programs::ProgramError
  7930. impl core::marker::Unpin for aya::programs::ProgramError
  7931. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramError
  7932. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramError
  7933. impl<T, U> core::convert::Into<U> for aya::programs::ProgramError where U: core::convert::From<T>
  7934. pub fn aya::programs::ProgramError::into(self) -> U
  7935. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramError where U: core::convert::Into<T>
  7936. pub type aya::programs::ProgramError::Error = core::convert::Infallible
  7937. pub fn aya::programs::ProgramError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7938. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramError where U: core::convert::TryFrom<T>
  7939. pub type aya::programs::ProgramError::Error = <U as core::convert::TryFrom<T>>::Error
  7940. pub fn aya::programs::ProgramError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7941. impl<T> alloc::string::ToString for aya::programs::ProgramError where T: core::fmt::Display + ?core::marker::Sized
  7942. pub fn aya::programs::ProgramError::to_string(&self) -> alloc::string::String
  7943. impl<T> core::any::Any for aya::programs::ProgramError where T: 'static + ?core::marker::Sized
  7944. pub fn aya::programs::ProgramError::type_id(&self) -> core::any::TypeId
  7945. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramError where T: ?core::marker::Sized
  7946. pub fn aya::programs::ProgramError::borrow(&self) -> &T
  7947. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramError where T: ?core::marker::Sized
  7948. pub fn aya::programs::ProgramError::borrow_mut(&mut self) -> &mut T
  7949. impl<T> core::convert::From<T> for aya::programs::ProgramError
  7950. pub fn aya::programs::ProgramError::from(t: T) -> T
  7951. #[non_exhaustive] pub enum aya::programs::ProgramType
  7952. pub aya::programs::ProgramType::CgroupDevice = 15
  7953. pub aya::programs::ProgramType::CgroupSkb = 8
  7954. pub aya::programs::ProgramType::CgroupSock = 9
  7955. pub aya::programs::ProgramType::CgroupSockAddr = 18
  7956. pub aya::programs::ProgramType::CgroupSockopt = 25
  7957. pub aya::programs::ProgramType::CgroupSysctl = 23
  7958. pub aya::programs::ProgramType::Extension = 28
  7959. pub aya::programs::ProgramType::FlowDissector = 22
  7960. pub aya::programs::ProgramType::KProbe = 2
  7961. pub aya::programs::ProgramType::LircMode2 = 20
  7962. pub aya::programs::ProgramType::Lsm = 29
  7963. pub aya::programs::ProgramType::LwtInput = 10
  7964. pub aya::programs::ProgramType::LwtOutput = 11
  7965. pub aya::programs::ProgramType::LwtSeg6local = 19
  7966. pub aya::programs::ProgramType::LwtXmit = 12
  7967. pub aya::programs::ProgramType::Netfilter = 32
  7968. pub aya::programs::ProgramType::PerfEvent = 7
  7969. pub aya::programs::ProgramType::RawTracePoint = 17
  7970. pub aya::programs::ProgramType::RawTracePointWritable = 24
  7971. pub aya::programs::ProgramType::SchedAction = 4
  7972. pub aya::programs::ProgramType::SchedClassifier = 3
  7973. pub aya::programs::ProgramType::SkLookup = 30
  7974. pub aya::programs::ProgramType::SkMsg = 16
  7975. pub aya::programs::ProgramType::SkReuseport = 21
  7976. pub aya::programs::ProgramType::SkSkb = 14
  7977. pub aya::programs::ProgramType::SockOps = 13
  7978. pub aya::programs::ProgramType::SocketFilter = 1
  7979. pub aya::programs::ProgramType::StructOps = 27
  7980. pub aya::programs::ProgramType::Syscall = 31
  7981. pub aya::programs::ProgramType::TracePoint = 5
  7982. pub aya::programs::ProgramType::Tracing = 26
  7983. pub aya::programs::ProgramType::Unspecified = 0
  7984. pub aya::programs::ProgramType::Xdp = 6
  7985. impl core::clone::Clone for aya::programs::ProgramType
  7986. pub fn aya::programs::ProgramType::clone(&self) -> aya::programs::ProgramType
  7987. impl core::cmp::PartialEq for aya::programs::ProgramType
  7988. pub fn aya::programs::ProgramType::eq(&self, other: &aya::programs::ProgramType) -> bool
  7989. impl core::convert::TryFrom<aya_obj::generated::linux_bindings_x86_64::bpf_prog_type> for aya::programs::ProgramType
  7990. pub type aya::programs::ProgramType::Error = aya::programs::ProgramError
  7991. pub fn aya::programs::ProgramType::try_from(prog_type: aya_obj::generated::linux_bindings_x86_64::bpf_prog_type) -> core::result::Result<Self, Self::Error>
  7992. impl core::fmt::Debug for aya::programs::ProgramType
  7993. pub fn aya::programs::ProgramType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7994. impl core::marker::Copy for aya::programs::ProgramType
  7995. impl core::marker::StructuralPartialEq for aya::programs::ProgramType
  7996. impl core::marker::Freeze for aya::programs::ProgramType
  7997. impl core::marker::Send for aya::programs::ProgramType
  7998. impl core::marker::Sync for aya::programs::ProgramType
  7999. impl core::marker::Unpin for aya::programs::ProgramType
  8000. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramType
  8001. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramType
  8002. impl<T, U> core::convert::Into<U> for aya::programs::ProgramType where U: core::convert::From<T>
  8003. pub fn aya::programs::ProgramType::into(self) -> U
  8004. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramType where U: core::convert::Into<T>
  8005. pub type aya::programs::ProgramType::Error = core::convert::Infallible
  8006. pub fn aya::programs::ProgramType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8007. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramType where U: core::convert::TryFrom<T>
  8008. pub type aya::programs::ProgramType::Error = <U as core::convert::TryFrom<T>>::Error
  8009. pub fn aya::programs::ProgramType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8010. impl<T> alloc::borrow::ToOwned for aya::programs::ProgramType where T: core::clone::Clone
  8011. pub type aya::programs::ProgramType::Owned = T
  8012. pub fn aya::programs::ProgramType::clone_into(&self, target: &mut T)
  8013. pub fn aya::programs::ProgramType::to_owned(&self) -> T
  8014. impl<T> core::any::Any for aya::programs::ProgramType where T: 'static + ?core::marker::Sized
  8015. pub fn aya::programs::ProgramType::type_id(&self) -> core::any::TypeId
  8016. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramType where T: ?core::marker::Sized
  8017. pub fn aya::programs::ProgramType::borrow(&self) -> &T
  8018. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramType where T: ?core::marker::Sized
  8019. pub fn aya::programs::ProgramType::borrow_mut(&mut self) -> &mut T
  8020. impl<T> core::clone::CloneToUninit for aya::programs::ProgramType where T: core::clone::Clone
  8021. pub unsafe fn aya::programs::ProgramType::clone_to_uninit(&self, dest: *mut u8)
  8022. impl<T> core::convert::From<T> for aya::programs::ProgramType
  8023. pub fn aya::programs::ProgramType::from(t: T) -> T
  8024. pub enum aya::programs::SamplePolicy
  8025. pub aya::programs::SamplePolicy::Frequency(u64)
  8026. pub aya::programs::SamplePolicy::Period(u64)
  8027. impl core::clone::Clone for aya::programs::perf_event::SamplePolicy
  8028. pub fn aya::programs::perf_event::SamplePolicy::clone(&self) -> aya::programs::perf_event::SamplePolicy
  8029. impl core::fmt::Debug for aya::programs::perf_event::SamplePolicy
  8030. pub fn aya::programs::perf_event::SamplePolicy::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8031. impl core::marker::Freeze for aya::programs::perf_event::SamplePolicy
  8032. impl core::marker::Send for aya::programs::perf_event::SamplePolicy
  8033. impl core::marker::Sync for aya::programs::perf_event::SamplePolicy
  8034. impl core::marker::Unpin for aya::programs::perf_event::SamplePolicy
  8035. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::SamplePolicy
  8036. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::SamplePolicy
  8037. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::From<T>
  8038. pub fn aya::programs::perf_event::SamplePolicy::into(self) -> U
  8039. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::Into<T>
  8040. pub type aya::programs::perf_event::SamplePolicy::Error = core::convert::Infallible
  8041. pub fn aya::programs::perf_event::SamplePolicy::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8042. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::TryFrom<T>
  8043. pub type aya::programs::perf_event::SamplePolicy::Error = <U as core::convert::TryFrom<T>>::Error
  8044. pub fn aya::programs::perf_event::SamplePolicy::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8045. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  8046. pub type aya::programs::perf_event::SamplePolicy::Owned = T
  8047. pub fn aya::programs::perf_event::SamplePolicy::clone_into(&self, target: &mut T)
  8048. pub fn aya::programs::perf_event::SamplePolicy::to_owned(&self) -> T
  8049. impl<T> core::any::Any for aya::programs::perf_event::SamplePolicy where T: 'static + ?core::marker::Sized
  8050. pub fn aya::programs::perf_event::SamplePolicy::type_id(&self) -> core::any::TypeId
  8051. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::SamplePolicy where T: ?core::marker::Sized
  8052. pub fn aya::programs::perf_event::SamplePolicy::borrow(&self) -> &T
  8053. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::SamplePolicy where T: ?core::marker::Sized
  8054. pub fn aya::programs::perf_event::SamplePolicy::borrow_mut(&mut self) -> &mut T
  8055. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  8056. pub unsafe fn aya::programs::perf_event::SamplePolicy::clone_to_uninit(&self, dest: *mut u8)
  8057. impl<T> core::convert::From<T> for aya::programs::perf_event::SamplePolicy
  8058. pub fn aya::programs::perf_event::SamplePolicy::from(t: T) -> T
  8059. pub enum aya::programs::SkSkbKind
  8060. pub aya::programs::SkSkbKind::StreamParser
  8061. pub aya::programs::SkSkbKind::StreamVerdict
  8062. impl core::clone::Clone for aya::programs::sk_skb::SkSkbKind
  8063. pub fn aya::programs::sk_skb::SkSkbKind::clone(&self) -> aya::programs::sk_skb::SkSkbKind
  8064. impl core::fmt::Debug for aya::programs::sk_skb::SkSkbKind
  8065. pub fn aya::programs::sk_skb::SkSkbKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8066. impl core::marker::Copy for aya::programs::sk_skb::SkSkbKind
  8067. impl core::marker::Freeze for aya::programs::sk_skb::SkSkbKind
  8068. impl core::marker::Send for aya::programs::sk_skb::SkSkbKind
  8069. impl core::marker::Sync for aya::programs::sk_skb::SkSkbKind
  8070. impl core::marker::Unpin for aya::programs::sk_skb::SkSkbKind
  8071. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkbKind
  8072. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkbKind
  8073. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::From<T>
  8074. pub fn aya::programs::sk_skb::SkSkbKind::into(self) -> U
  8075. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::Into<T>
  8076. pub type aya::programs::sk_skb::SkSkbKind::Error = core::convert::Infallible
  8077. pub fn aya::programs::sk_skb::SkSkbKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8078. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::TryFrom<T>
  8079. pub type aya::programs::sk_skb::SkSkbKind::Error = <U as core::convert::TryFrom<T>>::Error
  8080. pub fn aya::programs::sk_skb::SkSkbKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8081. impl<T> alloc::borrow::ToOwned for aya::programs::sk_skb::SkSkbKind where T: core::clone::Clone
  8082. pub type aya::programs::sk_skb::SkSkbKind::Owned = T
  8083. pub fn aya::programs::sk_skb::SkSkbKind::clone_into(&self, target: &mut T)
  8084. pub fn aya::programs::sk_skb::SkSkbKind::to_owned(&self) -> T
  8085. impl<T> core::any::Any for aya::programs::sk_skb::SkSkbKind where T: 'static + ?core::marker::Sized
  8086. pub fn aya::programs::sk_skb::SkSkbKind::type_id(&self) -> core::any::TypeId
  8087. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkbKind where T: ?core::marker::Sized
  8088. pub fn aya::programs::sk_skb::SkSkbKind::borrow(&self) -> &T
  8089. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkbKind where T: ?core::marker::Sized
  8090. pub fn aya::programs::sk_skb::SkSkbKind::borrow_mut(&mut self) -> &mut T
  8091. impl<T> core::clone::CloneToUninit for aya::programs::sk_skb::SkSkbKind where T: core::clone::Clone
  8092. pub unsafe fn aya::programs::sk_skb::SkSkbKind::clone_to_uninit(&self, dest: *mut u8)
  8093. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkbKind
  8094. pub fn aya::programs::sk_skb::SkSkbKind::from(t: T) -> T
  8095. pub enum aya::programs::SocketFilterError
  8096. pub aya::programs::SocketFilterError::SoAttachEbpfError
  8097. pub aya::programs::SocketFilterError::SoAttachEbpfError::io_error: std::io::error::Error
  8098. impl core::convert::From<aya::programs::socket_filter::SocketFilterError> for aya::programs::ProgramError
  8099. pub fn aya::programs::ProgramError::from(source: aya::programs::socket_filter::SocketFilterError) -> Self
  8100. impl core::error::Error for aya::programs::socket_filter::SocketFilterError
  8101. pub fn aya::programs::socket_filter::SocketFilterError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8102. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilterError
  8103. pub fn aya::programs::socket_filter::SocketFilterError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8104. impl core::fmt::Display for aya::programs::socket_filter::SocketFilterError
  8105. pub fn aya::programs::socket_filter::SocketFilterError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8106. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilterError
  8107. impl core::marker::Send for aya::programs::socket_filter::SocketFilterError
  8108. impl core::marker::Sync for aya::programs::socket_filter::SocketFilterError
  8109. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilterError
  8110. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilterError
  8111. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilterError
  8112. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::From<T>
  8113. pub fn aya::programs::socket_filter::SocketFilterError::into(self) -> U
  8114. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::Into<T>
  8115. pub type aya::programs::socket_filter::SocketFilterError::Error = core::convert::Infallible
  8116. pub fn aya::programs::socket_filter::SocketFilterError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8117. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::TryFrom<T>
  8118. pub type aya::programs::socket_filter::SocketFilterError::Error = <U as core::convert::TryFrom<T>>::Error
  8119. pub fn aya::programs::socket_filter::SocketFilterError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8120. impl<T> alloc::string::ToString for aya::programs::socket_filter::SocketFilterError where T: core::fmt::Display + ?core::marker::Sized
  8121. pub fn aya::programs::socket_filter::SocketFilterError::to_string(&self) -> alloc::string::String
  8122. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilterError where T: 'static + ?core::marker::Sized
  8123. pub fn aya::programs::socket_filter::SocketFilterError::type_id(&self) -> core::any::TypeId
  8124. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilterError where T: ?core::marker::Sized
  8125. pub fn aya::programs::socket_filter::SocketFilterError::borrow(&self) -> &T
  8126. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilterError where T: ?core::marker::Sized
  8127. pub fn aya::programs::socket_filter::SocketFilterError::borrow_mut(&mut self) -> &mut T
  8128. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilterError
  8129. pub fn aya::programs::socket_filter::SocketFilterError::from(t: T) -> T
  8130. pub enum aya::programs::TcAttachType
  8131. pub aya::programs::TcAttachType::Custom(u32)
  8132. pub aya::programs::TcAttachType::Egress
  8133. pub aya::programs::TcAttachType::Ingress
  8134. impl core::clone::Clone for aya::programs::tc::TcAttachType
  8135. pub fn aya::programs::tc::TcAttachType::clone(&self) -> aya::programs::tc::TcAttachType
  8136. impl core::cmp::Eq for aya::programs::tc::TcAttachType
  8137. impl core::cmp::PartialEq for aya::programs::tc::TcAttachType
  8138. pub fn aya::programs::tc::TcAttachType::eq(&self, other: &aya::programs::tc::TcAttachType) -> bool
  8139. impl core::fmt::Debug for aya::programs::tc::TcAttachType
  8140. pub fn aya::programs::tc::TcAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8141. impl core::hash::Hash for aya::programs::tc::TcAttachType
  8142. pub fn aya::programs::tc::TcAttachType::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  8143. impl core::marker::Copy for aya::programs::tc::TcAttachType
  8144. impl core::marker::StructuralPartialEq for aya::programs::tc::TcAttachType
  8145. impl core::marker::Freeze for aya::programs::tc::TcAttachType
  8146. impl core::marker::Send for aya::programs::tc::TcAttachType
  8147. impl core::marker::Sync for aya::programs::tc::TcAttachType
  8148. impl core::marker::Unpin for aya::programs::tc::TcAttachType
  8149. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcAttachType
  8150. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcAttachType
  8151. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::TcAttachType where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  8152. pub fn aya::programs::tc::TcAttachType::equivalent(&self, key: &K) -> bool
  8153. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcAttachType where U: core::convert::From<T>
  8154. pub fn aya::programs::tc::TcAttachType::into(self) -> U
  8155. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcAttachType where U: core::convert::Into<T>
  8156. pub type aya::programs::tc::TcAttachType::Error = core::convert::Infallible
  8157. pub fn aya::programs::tc::TcAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8158. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcAttachType where U: core::convert::TryFrom<T>
  8159. pub type aya::programs::tc::TcAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  8160. pub fn aya::programs::tc::TcAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8161. impl<T> alloc::borrow::ToOwned for aya::programs::tc::TcAttachType where T: core::clone::Clone
  8162. pub type aya::programs::tc::TcAttachType::Owned = T
  8163. pub fn aya::programs::tc::TcAttachType::clone_into(&self, target: &mut T)
  8164. pub fn aya::programs::tc::TcAttachType::to_owned(&self) -> T
  8165. impl<T> core::any::Any for aya::programs::tc::TcAttachType where T: 'static + ?core::marker::Sized
  8166. pub fn aya::programs::tc::TcAttachType::type_id(&self) -> core::any::TypeId
  8167. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcAttachType where T: ?core::marker::Sized
  8168. pub fn aya::programs::tc::TcAttachType::borrow(&self) -> &T
  8169. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcAttachType where T: ?core::marker::Sized
  8170. pub fn aya::programs::tc::TcAttachType::borrow_mut(&mut self) -> &mut T
  8171. impl<T> core::clone::CloneToUninit for aya::programs::tc::TcAttachType where T: core::clone::Clone
  8172. pub unsafe fn aya::programs::tc::TcAttachType::clone_to_uninit(&self, dest: *mut u8)
  8173. impl<T> core::convert::From<T> for aya::programs::tc::TcAttachType
  8174. pub fn aya::programs::tc::TcAttachType::from(t: T) -> T
  8175. pub enum aya::programs::TcError
  8176. pub aya::programs::TcError::AlreadyAttached
  8177. pub aya::programs::TcError::InvalidLinkOperation
  8178. pub aya::programs::TcError::InvalidTcxAttach(u32)
  8179. pub aya::programs::TcError::IoError(std::io::error::Error)
  8180. pub aya::programs::TcError::NetlinkError(aya::sys::netlink::NetlinkError)
  8181. pub aya::programs::TcError::NulError(alloc::ffi::c_str::NulError)
  8182. impl core::convert::From<alloc::ffi::c_str::NulError> for aya::programs::tc::TcError
  8183. pub fn aya::programs::tc::TcError::from(source: alloc::ffi::c_str::NulError) -> Self
  8184. impl core::convert::From<aya::programs::tc::TcError> for aya::programs::ProgramError
  8185. pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self
  8186. impl core::convert::From<std::io::error::Error> for aya::programs::tc::TcError
  8187. pub fn aya::programs::tc::TcError::from(source: std::io::error::Error) -> Self
  8188. impl core::error::Error for aya::programs::tc::TcError
  8189. pub fn aya::programs::tc::TcError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8190. impl core::fmt::Debug for aya::programs::tc::TcError
  8191. pub fn aya::programs::tc::TcError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8192. impl core::fmt::Display for aya::programs::tc::TcError
  8193. pub fn aya::programs::tc::TcError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8194. impl core::marker::Freeze for aya::programs::tc::TcError
  8195. impl core::marker::Send for aya::programs::tc::TcError
  8196. impl core::marker::Sync for aya::programs::tc::TcError
  8197. impl core::marker::Unpin for aya::programs::tc::TcError
  8198. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcError
  8199. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcError
  8200. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcError where U: core::convert::From<T>
  8201. pub fn aya::programs::tc::TcError::into(self) -> U
  8202. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcError where U: core::convert::Into<T>
  8203. pub type aya::programs::tc::TcError::Error = core::convert::Infallible
  8204. pub fn aya::programs::tc::TcError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8205. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcError where U: core::convert::TryFrom<T>
  8206. pub type aya::programs::tc::TcError::Error = <U as core::convert::TryFrom<T>>::Error
  8207. pub fn aya::programs::tc::TcError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8208. impl<T> alloc::string::ToString for aya::programs::tc::TcError where T: core::fmt::Display + ?core::marker::Sized
  8209. pub fn aya::programs::tc::TcError::to_string(&self) -> alloc::string::String
  8210. impl<T> core::any::Any for aya::programs::tc::TcError where T: 'static + ?core::marker::Sized
  8211. pub fn aya::programs::tc::TcError::type_id(&self) -> core::any::TypeId
  8212. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcError where T: ?core::marker::Sized
  8213. pub fn aya::programs::tc::TcError::borrow(&self) -> &T
  8214. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcError where T: ?core::marker::Sized
  8215. pub fn aya::programs::tc::TcError::borrow_mut(&mut self) -> &mut T
  8216. impl<T> core::convert::From<T> for aya::programs::tc::TcError
  8217. pub fn aya::programs::tc::TcError::from(t: T) -> T
  8218. pub enum aya::programs::TracePointError
  8219. pub aya::programs::TracePointError::FileError
  8220. pub aya::programs::TracePointError::FileError::filename: std::path::PathBuf
  8221. pub aya::programs::TracePointError::FileError::io_error: std::io::error::Error
  8222. impl core::convert::From<aya::programs::trace_point::TracePointError> for aya::programs::ProgramError
  8223. pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self
  8224. impl core::error::Error for aya::programs::trace_point::TracePointError
  8225. pub fn aya::programs::trace_point::TracePointError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8226. impl core::fmt::Debug for aya::programs::trace_point::TracePointError
  8227. pub fn aya::programs::trace_point::TracePointError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8228. impl core::fmt::Display for aya::programs::trace_point::TracePointError
  8229. pub fn aya::programs::trace_point::TracePointError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8230. impl core::marker::Freeze for aya::programs::trace_point::TracePointError
  8231. impl core::marker::Send for aya::programs::trace_point::TracePointError
  8232. impl core::marker::Sync for aya::programs::trace_point::TracePointError
  8233. impl core::marker::Unpin for aya::programs::trace_point::TracePointError
  8234. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointError
  8235. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointError
  8236. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointError where U: core::convert::From<T>
  8237. pub fn aya::programs::trace_point::TracePointError::into(self) -> U
  8238. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointError where U: core::convert::Into<T>
  8239. pub type aya::programs::trace_point::TracePointError::Error = core::convert::Infallible
  8240. pub fn aya::programs::trace_point::TracePointError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8241. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointError where U: core::convert::TryFrom<T>
  8242. pub type aya::programs::trace_point::TracePointError::Error = <U as core::convert::TryFrom<T>>::Error
  8243. pub fn aya::programs::trace_point::TracePointError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8244. impl<T> alloc::string::ToString for aya::programs::trace_point::TracePointError where T: core::fmt::Display + ?core::marker::Sized
  8245. pub fn aya::programs::trace_point::TracePointError::to_string(&self) -> alloc::string::String
  8246. impl<T> core::any::Any for aya::programs::trace_point::TracePointError where T: 'static + ?core::marker::Sized
  8247. pub fn aya::programs::trace_point::TracePointError::type_id(&self) -> core::any::TypeId
  8248. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointError where T: ?core::marker::Sized
  8249. pub fn aya::programs::trace_point::TracePointError::borrow(&self) -> &T
  8250. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointError where T: ?core::marker::Sized
  8251. pub fn aya::programs::trace_point::TracePointError::borrow_mut(&mut self) -> &mut T
  8252. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointError
  8253. pub fn aya::programs::trace_point::TracePointError::from(t: T) -> T
  8254. pub enum aya::programs::UProbeError
  8255. pub aya::programs::UProbeError::FileError
  8256. pub aya::programs::UProbeError::FileError::filename: std::path::PathBuf
  8257. pub aya::programs::UProbeError::FileError::io_error: std::io::error::Error
  8258. pub aya::programs::UProbeError::InvalidLdSoCache
  8259. pub aya::programs::UProbeError::InvalidLdSoCache::io_error: &'static std::io::error::Error
  8260. pub aya::programs::UProbeError::InvalidTarget
  8261. pub aya::programs::UProbeError::InvalidTarget::path: std::path::PathBuf
  8262. pub aya::programs::UProbeError::ProcMap
  8263. pub aya::programs::UProbeError::ProcMap::pid: i32
  8264. pub aya::programs::UProbeError::ProcMap::source: aya::programs::uprobe::ProcMapError
  8265. pub aya::programs::UProbeError::SymbolError
  8266. pub aya::programs::UProbeError::SymbolError::error: alloc::boxed::Box<(dyn core::error::Error + core::marker::Send + core::marker::Sync)>
  8267. pub aya::programs::UProbeError::SymbolError::symbol: alloc::string::String
  8268. impl core::convert::From<aya::programs::uprobe::UProbeError> for aya::programs::ProgramError
  8269. pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self
  8270. impl core::error::Error for aya::programs::uprobe::UProbeError
  8271. pub fn aya::programs::uprobe::UProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8272. impl core::fmt::Debug for aya::programs::uprobe::UProbeError
  8273. pub fn aya::programs::uprobe::UProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8274. impl core::fmt::Display for aya::programs::uprobe::UProbeError
  8275. pub fn aya::programs::uprobe::UProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8276. impl core::marker::Freeze for aya::programs::uprobe::UProbeError
  8277. impl core::marker::Send for aya::programs::uprobe::UProbeError
  8278. impl core::marker::Sync for aya::programs::uprobe::UProbeError
  8279. impl core::marker::Unpin for aya::programs::uprobe::UProbeError
  8280. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeError
  8281. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeError
  8282. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeError where U: core::convert::From<T>
  8283. pub fn aya::programs::uprobe::UProbeError::into(self) -> U
  8284. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeError where U: core::convert::Into<T>
  8285. pub type aya::programs::uprobe::UProbeError::Error = core::convert::Infallible
  8286. pub fn aya::programs::uprobe::UProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8287. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeError where U: core::convert::TryFrom<T>
  8288. pub type aya::programs::uprobe::UProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  8289. pub fn aya::programs::uprobe::UProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8290. impl<T> alloc::string::ToString for aya::programs::uprobe::UProbeError where T: core::fmt::Display + ?core::marker::Sized
  8291. pub fn aya::programs::uprobe::UProbeError::to_string(&self) -> alloc::string::String
  8292. impl<T> core::any::Any for aya::programs::uprobe::UProbeError where T: 'static + ?core::marker::Sized
  8293. pub fn aya::programs::uprobe::UProbeError::type_id(&self) -> core::any::TypeId
  8294. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeError where T: ?core::marker::Sized
  8295. pub fn aya::programs::uprobe::UProbeError::borrow(&self) -> &T
  8296. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeError where T: ?core::marker::Sized
  8297. pub fn aya::programs::uprobe::UProbeError::borrow_mut(&mut self) -> &mut T
  8298. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeError
  8299. pub fn aya::programs::uprobe::UProbeError::from(t: T) -> T
  8300. pub enum aya::programs::XdpError
  8301. pub aya::programs::XdpError::NetlinkError(aya::sys::netlink::NetlinkError)
  8302. impl core::convert::From<aya::programs::xdp::XdpError> for aya::programs::ProgramError
  8303. pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self
  8304. impl core::error::Error for aya::programs::xdp::XdpError
  8305. pub fn aya::programs::xdp::XdpError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8306. impl core::fmt::Debug for aya::programs::xdp::XdpError
  8307. pub fn aya::programs::xdp::XdpError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8308. impl core::fmt::Display for aya::programs::xdp::XdpError
  8309. pub fn aya::programs::xdp::XdpError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8310. impl core::marker::Freeze for aya::programs::xdp::XdpError
  8311. impl core::marker::Send for aya::programs::xdp::XdpError
  8312. impl core::marker::Sync for aya::programs::xdp::XdpError
  8313. impl core::marker::Unpin for aya::programs::xdp::XdpError
  8314. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpError
  8315. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpError
  8316. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpError where U: core::convert::From<T>
  8317. pub fn aya::programs::xdp::XdpError::into(self) -> U
  8318. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpError where U: core::convert::Into<T>
  8319. pub type aya::programs::xdp::XdpError::Error = core::convert::Infallible
  8320. pub fn aya::programs::xdp::XdpError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8321. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpError where U: core::convert::TryFrom<T>
  8322. pub type aya::programs::xdp::XdpError::Error = <U as core::convert::TryFrom<T>>::Error
  8323. pub fn aya::programs::xdp::XdpError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8324. impl<T> alloc::string::ToString for aya::programs::xdp::XdpError where T: core::fmt::Display + ?core::marker::Sized
  8325. pub fn aya::programs::xdp::XdpError::to_string(&self) -> alloc::string::String
  8326. impl<T> core::any::Any for aya::programs::xdp::XdpError where T: 'static + ?core::marker::Sized
  8327. pub fn aya::programs::xdp::XdpError::type_id(&self) -> core::any::TypeId
  8328. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpError where T: ?core::marker::Sized
  8329. pub fn aya::programs::xdp::XdpError::borrow(&self) -> &T
  8330. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpError where T: ?core::marker::Sized
  8331. pub fn aya::programs::xdp::XdpError::borrow_mut(&mut self) -> &mut T
  8332. impl<T> core::convert::From<T> for aya::programs::xdp::XdpError
  8333. pub fn aya::programs::xdp::XdpError::from(t: T) -> T
  8334. pub struct aya::programs::BtfTracePoint
  8335. impl aya::programs::tp_btf::BtfTracePoint
  8336. pub const aya::programs::tp_btf::BtfTracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  8337. pub fn aya::programs::tp_btf::BtfTracePoint::attach(&mut self) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLinkId, aya::programs::ProgramError>
  8338. pub fn aya::programs::tp_btf::BtfTracePoint::load(&mut self, tracepoint: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  8339. impl aya::programs::tp_btf::BtfTracePoint
  8340. pub fn aya::programs::tp_btf::BtfTracePoint::detach(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8341. pub fn aya::programs::tp_btf::BtfTracePoint::take_link(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLink, aya::programs::ProgramError>
  8342. impl aya::programs::tp_btf::BtfTracePoint
  8343. pub fn aya::programs::tp_btf::BtfTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8344. impl aya::programs::tp_btf::BtfTracePoint
  8345. pub fn aya::programs::tp_btf::BtfTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8346. impl aya::programs::tp_btf::BtfTracePoint
  8347. pub unsafe fn aya::programs::tp_btf::BtfTracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8348. impl aya::programs::tp_btf::BtfTracePoint
  8349. pub fn aya::programs::tp_btf::BtfTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8350. impl aya::programs::tp_btf::BtfTracePoint
  8351. pub fn aya::programs::tp_btf::BtfTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8352. pub fn aya::programs::tp_btf::BtfTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8353. impl aya::programs::tp_btf::BtfTracePoint
  8354. pub fn aya::programs::tp_btf::BtfTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8355. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePoint
  8356. pub fn aya::programs::tp_btf::BtfTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8357. impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePoint
  8358. pub fn aya::programs::tp_btf::BtfTracePoint::drop(&mut self)
  8359. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint
  8360. pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  8361. pub fn &'a aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  8362. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint
  8363. pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  8364. pub fn &'a mut aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  8365. impl core::marker::Freeze for aya::programs::tp_btf::BtfTracePoint
  8366. impl core::marker::Send for aya::programs::tp_btf::BtfTracePoint
  8367. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePoint
  8368. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePoint
  8369. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePoint
  8370. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePoint
  8371. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::From<T>
  8372. pub fn aya::programs::tp_btf::BtfTracePoint::into(self) -> U
  8373. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::Into<T>
  8374. pub type aya::programs::tp_btf::BtfTracePoint::Error = core::convert::Infallible
  8375. pub fn aya::programs::tp_btf::BtfTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8376. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::TryFrom<T>
  8377. pub type aya::programs::tp_btf::BtfTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  8378. pub fn aya::programs::tp_btf::BtfTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8379. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePoint where T: 'static + ?core::marker::Sized
  8380. pub fn aya::programs::tp_btf::BtfTracePoint::type_id(&self) -> core::any::TypeId
  8381. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePoint where T: ?core::marker::Sized
  8382. pub fn aya::programs::tp_btf::BtfTracePoint::borrow(&self) -> &T
  8383. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePoint where T: ?core::marker::Sized
  8384. pub fn aya::programs::tp_btf::BtfTracePoint::borrow_mut(&mut self) -> &mut T
  8385. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePoint
  8386. pub fn aya::programs::tp_btf::BtfTracePoint::from(t: T) -> T
  8387. pub struct aya::programs::CgroupDevice
  8388. impl aya::programs::cgroup_device::CgroupDevice
  8389. pub const aya::programs::cgroup_device::CgroupDevice::PROGRAM_TYPE: aya::programs::ProgramType
  8390. pub fn aya::programs::cgroup_device::CgroupDevice::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLinkId, aya::programs::ProgramError>
  8391. pub fn aya::programs::cgroup_device::CgroupDevice::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8392. pub fn aya::programs::cgroup_device::CgroupDevice::query<T: std::os::fd::owned::AsFd>(target_fd: T) -> core::result::Result<alloc::vec::Vec<aya::programs::cgroup_device::CgroupDeviceLink>, aya::programs::ProgramError>
  8393. impl aya::programs::cgroup_device::CgroupDevice
  8394. pub fn aya::programs::cgroup_device::CgroupDevice::detach(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8395. pub fn aya::programs::cgroup_device::CgroupDevice::take_link(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLink, aya::programs::ProgramError>
  8396. impl aya::programs::cgroup_device::CgroupDevice
  8397. pub fn aya::programs::cgroup_device::CgroupDevice::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8398. impl aya::programs::cgroup_device::CgroupDevice
  8399. pub fn aya::programs::cgroup_device::CgroupDevice::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8400. impl aya::programs::cgroup_device::CgroupDevice
  8401. pub fn aya::programs::cgroup_device::CgroupDevice::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8402. impl aya::programs::cgroup_device::CgroupDevice
  8403. pub fn aya::programs::cgroup_device::CgroupDevice::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8404. impl aya::programs::cgroup_device::CgroupDevice
  8405. pub fn aya::programs::cgroup_device::CgroupDevice::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8406. pub fn aya::programs::cgroup_device::CgroupDevice::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8407. impl aya::programs::cgroup_device::CgroupDevice
  8408. pub fn aya::programs::cgroup_device::CgroupDevice::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8409. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDevice
  8410. pub fn aya::programs::cgroup_device::CgroupDevice::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8411. impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDevice
  8412. pub fn aya::programs::cgroup_device::CgroupDevice::drop(&mut self)
  8413. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice
  8414. pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  8415. pub fn &'a aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  8416. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice
  8417. pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  8418. pub fn &'a mut aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  8419. impl core::marker::Freeze for aya::programs::cgroup_device::CgroupDevice
  8420. impl core::marker::Send for aya::programs::cgroup_device::CgroupDevice
  8421. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDevice
  8422. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDevice
  8423. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDevice
  8424. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDevice
  8425. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::From<T>
  8426. pub fn aya::programs::cgroup_device::CgroupDevice::into(self) -> U
  8427. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::Into<T>
  8428. pub type aya::programs::cgroup_device::CgroupDevice::Error = core::convert::Infallible
  8429. pub fn aya::programs::cgroup_device::CgroupDevice::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8430. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::TryFrom<T>
  8431. pub type aya::programs::cgroup_device::CgroupDevice::Error = <U as core::convert::TryFrom<T>>::Error
  8432. pub fn aya::programs::cgroup_device::CgroupDevice::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8433. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDevice where T: 'static + ?core::marker::Sized
  8434. pub fn aya::programs::cgroup_device::CgroupDevice::type_id(&self) -> core::any::TypeId
  8435. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDevice where T: ?core::marker::Sized
  8436. pub fn aya::programs::cgroup_device::CgroupDevice::borrow(&self) -> &T
  8437. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDevice where T: ?core::marker::Sized
  8438. pub fn aya::programs::cgroup_device::CgroupDevice::borrow_mut(&mut self) -> &mut T
  8439. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDevice
  8440. pub fn aya::programs::cgroup_device::CgroupDevice::from(t: T) -> T
  8441. pub struct aya::programs::CgroupSkb
  8442. impl aya::programs::cgroup_skb::CgroupSkb
  8443. pub const aya::programs::cgroup_skb::CgroupSkb::PROGRAM_TYPE: aya::programs::ProgramType
  8444. pub fn aya::programs::cgroup_skb::CgroupSkb::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLinkId, aya::programs::ProgramError>
  8445. pub fn aya::programs::cgroup_skb::CgroupSkb::expected_attach_type(&self) -> &core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>
  8446. pub fn aya::programs::cgroup_skb::CgroupSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, expected_attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  8447. pub fn aya::programs::cgroup_skb::CgroupSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8448. impl aya::programs::cgroup_skb::CgroupSkb
  8449. pub fn aya::programs::cgroup_skb::CgroupSkb::detach(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8450. pub fn aya::programs::cgroup_skb::CgroupSkb::take_link(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLink, aya::programs::ProgramError>
  8451. impl aya::programs::cgroup_skb::CgroupSkb
  8452. pub fn aya::programs::cgroup_skb::CgroupSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8453. impl aya::programs::cgroup_skb::CgroupSkb
  8454. pub fn aya::programs::cgroup_skb::CgroupSkb::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>) -> core::result::Result<Self, aya::programs::ProgramError>
  8455. impl aya::programs::cgroup_skb::CgroupSkb
  8456. pub fn aya::programs::cgroup_skb::CgroupSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8457. impl aya::programs::cgroup_skb::CgroupSkb
  8458. pub fn aya::programs::cgroup_skb::CgroupSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8459. pub fn aya::programs::cgroup_skb::CgroupSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8460. impl aya::programs::cgroup_skb::CgroupSkb
  8461. pub fn aya::programs::cgroup_skb::CgroupSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8462. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkb
  8463. pub fn aya::programs::cgroup_skb::CgroupSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8464. impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkb
  8465. pub fn aya::programs::cgroup_skb::CgroupSkb::drop(&mut self)
  8466. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb
  8467. pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  8468. pub fn &'a aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  8469. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb
  8470. pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  8471. pub fn &'a mut aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  8472. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkb
  8473. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkb
  8474. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkb
  8475. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkb
  8476. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  8477. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  8478. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::From<T>
  8479. pub fn aya::programs::cgroup_skb::CgroupSkb::into(self) -> U
  8480. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::Into<T>
  8481. pub type aya::programs::cgroup_skb::CgroupSkb::Error = core::convert::Infallible
  8482. pub fn aya::programs::cgroup_skb::CgroupSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8483. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::TryFrom<T>
  8484. pub type aya::programs::cgroup_skb::CgroupSkb::Error = <U as core::convert::TryFrom<T>>::Error
  8485. pub fn aya::programs::cgroup_skb::CgroupSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8486. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkb where T: 'static + ?core::marker::Sized
  8487. pub fn aya::programs::cgroup_skb::CgroupSkb::type_id(&self) -> core::any::TypeId
  8488. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkb where T: ?core::marker::Sized
  8489. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow(&self) -> &T
  8490. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkb where T: ?core::marker::Sized
  8491. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow_mut(&mut self) -> &mut T
  8492. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkb
  8493. pub fn aya::programs::cgroup_skb::CgroupSkb::from(t: T) -> T
  8494. pub struct aya::programs::CgroupSock
  8495. impl aya::programs::cgroup_sock::CgroupSock
  8496. pub const aya::programs::cgroup_sock::CgroupSock::PROGRAM_TYPE: aya::programs::ProgramType
  8497. pub fn aya::programs::cgroup_sock::CgroupSock::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLinkId, aya::programs::ProgramError>
  8498. pub fn aya::programs::cgroup_sock::CgroupSock::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock::CgroupSockAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  8499. pub fn aya::programs::cgroup_sock::CgroupSock::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8500. impl aya::programs::cgroup_sock::CgroupSock
  8501. pub fn aya::programs::cgroup_sock::CgroupSock::detach(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8502. pub fn aya::programs::cgroup_sock::CgroupSock::take_link(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLink, aya::programs::ProgramError>
  8503. impl aya::programs::cgroup_sock::CgroupSock
  8504. pub fn aya::programs::cgroup_sock::CgroupSock::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8505. impl aya::programs::cgroup_sock::CgroupSock
  8506. pub fn aya::programs::cgroup_sock::CgroupSock::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8507. impl aya::programs::cgroup_sock::CgroupSock
  8508. pub fn aya::programs::cgroup_sock::CgroupSock::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8509. pub fn aya::programs::cgroup_sock::CgroupSock::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8510. impl aya::programs::cgroup_sock::CgroupSock
  8511. pub fn aya::programs::cgroup_sock::CgroupSock::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8512. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSock
  8513. pub fn aya::programs::cgroup_sock::CgroupSock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8514. impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSock
  8515. pub fn aya::programs::cgroup_sock::CgroupSock::drop(&mut self)
  8516. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock
  8517. pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  8518. pub fn &'a aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  8519. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock
  8520. pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  8521. pub fn &'a mut aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  8522. impl core::marker::Freeze for aya::programs::cgroup_sock::CgroupSock
  8523. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSock
  8524. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSock
  8525. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSock
  8526. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSock
  8527. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSock
  8528. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::From<T>
  8529. pub fn aya::programs::cgroup_sock::CgroupSock::into(self) -> U
  8530. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::Into<T>
  8531. pub type aya::programs::cgroup_sock::CgroupSock::Error = core::convert::Infallible
  8532. pub fn aya::programs::cgroup_sock::CgroupSock::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8533. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::TryFrom<T>
  8534. pub type aya::programs::cgroup_sock::CgroupSock::Error = <U as core::convert::TryFrom<T>>::Error
  8535. pub fn aya::programs::cgroup_sock::CgroupSock::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8536. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSock where T: 'static + ?core::marker::Sized
  8537. pub fn aya::programs::cgroup_sock::CgroupSock::type_id(&self) -> core::any::TypeId
  8538. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSock where T: ?core::marker::Sized
  8539. pub fn aya::programs::cgroup_sock::CgroupSock::borrow(&self) -> &T
  8540. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSock where T: ?core::marker::Sized
  8541. pub fn aya::programs::cgroup_sock::CgroupSock::borrow_mut(&mut self) -> &mut T
  8542. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSock
  8543. pub fn aya::programs::cgroup_sock::CgroupSock::from(t: T) -> T
  8544. pub struct aya::programs::CgroupSockAddr
  8545. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8546. pub const aya::programs::cgroup_sock_addr::CgroupSockAddr::PROGRAM_TYPE: aya::programs::ProgramType
  8547. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId, aya::programs::ProgramError>
  8548. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  8549. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8550. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8551. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::detach(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8552. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::take_link(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLink, aya::programs::ProgramError>
  8553. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8554. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8555. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8556. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8557. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8558. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8559. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8560. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8561. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8562. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8563. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8564. impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8565. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::drop(&mut self)
  8566. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr
  8567. pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  8568. pub fn &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  8569. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr
  8570. pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  8571. pub fn &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  8572. impl core::marker::Freeze for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8573. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8574. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8575. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8576. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8577. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8578. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::From<T>
  8579. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::into(self) -> U
  8580. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::Into<T>
  8581. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = core::convert::Infallible
  8582. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8583. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::TryFrom<T>
  8584. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = <U as core::convert::TryFrom<T>>::Error
  8585. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8586. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: 'static + ?core::marker::Sized
  8587. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::type_id(&self) -> core::any::TypeId
  8588. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: ?core::marker::Sized
  8589. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow(&self) -> &T
  8590. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: ?core::marker::Sized
  8591. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow_mut(&mut self) -> &mut T
  8592. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8593. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from(t: T) -> T
  8594. pub struct aya::programs::CgroupSockopt
  8595. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8596. pub const aya::programs::cgroup_sockopt::CgroupSockopt::PROGRAM_TYPE: aya::programs::ProgramType
  8597. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLinkId, aya::programs::ProgramError>
  8598. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  8599. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8600. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8601. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::detach(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8602. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::take_link(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLink, aya::programs::ProgramError>
  8603. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8604. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8605. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8606. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  8607. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8608. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8609. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8610. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8611. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8612. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8613. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8614. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockopt
  8615. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8616. impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockopt
  8617. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::drop(&mut self)
  8618. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt
  8619. pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  8620. pub fn &'a aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  8621. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt
  8622. pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  8623. pub fn &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  8624. impl core::marker::Freeze for aya::programs::cgroup_sockopt::CgroupSockopt
  8625. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockopt
  8626. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockopt
  8627. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockopt
  8628. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  8629. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  8630. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::From<T>
  8631. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::into(self) -> U
  8632. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::Into<T>
  8633. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = core::convert::Infallible
  8634. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8635. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::TryFrom<T>
  8636. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = <U as core::convert::TryFrom<T>>::Error
  8637. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8638. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockopt where T: 'static + ?core::marker::Sized
  8639. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::type_id(&self) -> core::any::TypeId
  8640. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: ?core::marker::Sized
  8641. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow(&self) -> &T
  8642. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: ?core::marker::Sized
  8643. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow_mut(&mut self) -> &mut T
  8644. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockopt
  8645. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from(t: T) -> T
  8646. pub struct aya::programs::CgroupSysctl
  8647. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8648. pub const aya::programs::cgroup_sysctl::CgroupSysctl::PROGRAM_TYPE: aya::programs::ProgramType
  8649. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLinkId, aya::programs::ProgramError>
  8650. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8651. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8652. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::detach(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8653. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::take_link(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLink, aya::programs::ProgramError>
  8654. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8655. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8656. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8657. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8658. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8659. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8660. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8661. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8662. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8663. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8664. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8665. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8666. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8667. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctl
  8668. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8669. impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctl
  8670. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::drop(&mut self)
  8671. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl
  8672. pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  8673. pub fn &'a aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  8674. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl
  8675. pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  8676. pub fn &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  8677. impl core::marker::Freeze for aya::programs::cgroup_sysctl::CgroupSysctl
  8678. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctl
  8679. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctl
  8680. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctl
  8681. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  8682. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  8683. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::From<T>
  8684. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::into(self) -> U
  8685. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::Into<T>
  8686. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = core::convert::Infallible
  8687. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8688. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::TryFrom<T>
  8689. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = <U as core::convert::TryFrom<T>>::Error
  8690. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8691. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctl where T: 'static + ?core::marker::Sized
  8692. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::type_id(&self) -> core::any::TypeId
  8693. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: ?core::marker::Sized
  8694. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow(&self) -> &T
  8695. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: ?core::marker::Sized
  8696. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow_mut(&mut self) -> &mut T
  8697. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctl
  8698. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from(t: T) -> T
  8699. pub struct aya::programs::Extension
  8700. impl aya::programs::extension::Extension
  8701. pub const aya::programs::extension::Extension::PROGRAM_TYPE: aya::programs::ProgramType
  8702. pub fn aya::programs::extension::Extension::attach(&mut self) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  8703. pub fn aya::programs::extension::Extension::attach_to_program(&mut self, program: &aya::programs::ProgramFd, func_name: &str) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  8704. pub fn aya::programs::extension::Extension::load(&mut self, program: aya::programs::ProgramFd, func_name: &str) -> core::result::Result<(), aya::programs::ProgramError>
  8705. impl aya::programs::extension::Extension
  8706. pub fn aya::programs::extension::Extension::detach(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8707. pub fn aya::programs::extension::Extension::take_link(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<aya::programs::extension::ExtensionLink, aya::programs::ProgramError>
  8708. impl aya::programs::extension::Extension
  8709. pub fn aya::programs::extension::Extension::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8710. impl aya::programs::extension::Extension
  8711. pub fn aya::programs::extension::Extension::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8712. impl aya::programs::extension::Extension
  8713. pub fn aya::programs::extension::Extension::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8714. impl aya::programs::extension::Extension
  8715. pub fn aya::programs::extension::Extension::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8716. impl aya::programs::extension::Extension
  8717. pub fn aya::programs::extension::Extension::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8718. pub fn aya::programs::extension::Extension::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8719. impl aya::programs::extension::Extension
  8720. pub fn aya::programs::extension::Extension::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8721. impl core::fmt::Debug for aya::programs::extension::Extension
  8722. pub fn aya::programs::extension::Extension::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8723. impl core::ops::drop::Drop for aya::programs::extension::Extension
  8724. pub fn aya::programs::extension::Extension::drop(&mut self)
  8725. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension
  8726. pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError
  8727. pub fn &'a aya::programs::extension::Extension::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::extension::Extension, aya::programs::ProgramError>
  8728. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension
  8729. pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError
  8730. pub fn &'a mut aya::programs::extension::Extension::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::extension::Extension, aya::programs::ProgramError>
  8731. impl core::marker::Freeze for aya::programs::extension::Extension
  8732. impl core::marker::Send for aya::programs::extension::Extension
  8733. impl core::marker::Sync for aya::programs::extension::Extension
  8734. impl core::marker::Unpin for aya::programs::extension::Extension
  8735. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::Extension
  8736. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::Extension
  8737. impl<T, U> core::convert::Into<U> for aya::programs::extension::Extension where U: core::convert::From<T>
  8738. pub fn aya::programs::extension::Extension::into(self) -> U
  8739. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::Extension where U: core::convert::Into<T>
  8740. pub type aya::programs::extension::Extension::Error = core::convert::Infallible
  8741. pub fn aya::programs::extension::Extension::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8742. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::Extension where U: core::convert::TryFrom<T>
  8743. pub type aya::programs::extension::Extension::Error = <U as core::convert::TryFrom<T>>::Error
  8744. pub fn aya::programs::extension::Extension::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8745. impl<T> core::any::Any for aya::programs::extension::Extension where T: 'static + ?core::marker::Sized
  8746. pub fn aya::programs::extension::Extension::type_id(&self) -> core::any::TypeId
  8747. impl<T> core::borrow::Borrow<T> for aya::programs::extension::Extension where T: ?core::marker::Sized
  8748. pub fn aya::programs::extension::Extension::borrow(&self) -> &T
  8749. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::Extension where T: ?core::marker::Sized
  8750. pub fn aya::programs::extension::Extension::borrow_mut(&mut self) -> &mut T
  8751. impl<T> core::convert::From<T> for aya::programs::extension::Extension
  8752. pub fn aya::programs::extension::Extension::from(t: T) -> T
  8753. pub struct aya::programs::FEntry
  8754. impl aya::programs::fentry::FEntry
  8755. pub const aya::programs::fentry::FEntry::PROGRAM_TYPE: aya::programs::ProgramType
  8756. pub fn aya::programs::fentry::FEntry::attach(&mut self) -> core::result::Result<aya::programs::fentry::FEntryLinkId, aya::programs::ProgramError>
  8757. pub fn aya::programs::fentry::FEntry::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  8758. impl aya::programs::fentry::FEntry
  8759. pub fn aya::programs::fentry::FEntry::detach(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8760. pub fn aya::programs::fentry::FEntry::take_link(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<aya::programs::fentry::FEntryLink, aya::programs::ProgramError>
  8761. impl aya::programs::fentry::FEntry
  8762. pub fn aya::programs::fentry::FEntry::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8763. impl aya::programs::fentry::FEntry
  8764. pub fn aya::programs::fentry::FEntry::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8765. impl aya::programs::fentry::FEntry
  8766. pub unsafe fn aya::programs::fentry::FEntry::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8767. impl aya::programs::fentry::FEntry
  8768. pub fn aya::programs::fentry::FEntry::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8769. impl aya::programs::fentry::FEntry
  8770. pub fn aya::programs::fentry::FEntry::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8771. pub fn aya::programs::fentry::FEntry::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8772. impl aya::programs::fentry::FEntry
  8773. pub fn aya::programs::fentry::FEntry::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8774. impl core::fmt::Debug for aya::programs::fentry::FEntry
  8775. pub fn aya::programs::fentry::FEntry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8776. impl core::ops::drop::Drop for aya::programs::fentry::FEntry
  8777. pub fn aya::programs::fentry::FEntry::drop(&mut self)
  8778. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry
  8779. pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  8780. pub fn &'a aya::programs::fentry::FEntry::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fentry::FEntry, aya::programs::ProgramError>
  8781. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry
  8782. pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  8783. pub fn &'a mut aya::programs::fentry::FEntry::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fentry::FEntry, aya::programs::ProgramError>
  8784. impl core::marker::Freeze for aya::programs::fentry::FEntry
  8785. impl core::marker::Send for aya::programs::fentry::FEntry
  8786. impl core::marker::Sync for aya::programs::fentry::FEntry
  8787. impl core::marker::Unpin for aya::programs::fentry::FEntry
  8788. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntry
  8789. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntry
  8790. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntry where U: core::convert::From<T>
  8791. pub fn aya::programs::fentry::FEntry::into(self) -> U
  8792. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntry where U: core::convert::Into<T>
  8793. pub type aya::programs::fentry::FEntry::Error = core::convert::Infallible
  8794. pub fn aya::programs::fentry::FEntry::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8795. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntry where U: core::convert::TryFrom<T>
  8796. pub type aya::programs::fentry::FEntry::Error = <U as core::convert::TryFrom<T>>::Error
  8797. pub fn aya::programs::fentry::FEntry::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8798. impl<T> core::any::Any for aya::programs::fentry::FEntry where T: 'static + ?core::marker::Sized
  8799. pub fn aya::programs::fentry::FEntry::type_id(&self) -> core::any::TypeId
  8800. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntry where T: ?core::marker::Sized
  8801. pub fn aya::programs::fentry::FEntry::borrow(&self) -> &T
  8802. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntry where T: ?core::marker::Sized
  8803. pub fn aya::programs::fentry::FEntry::borrow_mut(&mut self) -> &mut T
  8804. impl<T> core::convert::From<T> for aya::programs::fentry::FEntry
  8805. pub fn aya::programs::fentry::FEntry::from(t: T) -> T
  8806. pub struct aya::programs::FExit
  8807. impl aya::programs::fexit::FExit
  8808. pub const aya::programs::fexit::FExit::PROGRAM_TYPE: aya::programs::ProgramType
  8809. pub fn aya::programs::fexit::FExit::attach(&mut self) -> core::result::Result<aya::programs::fexit::FExitLinkId, aya::programs::ProgramError>
  8810. pub fn aya::programs::fexit::FExit::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  8811. impl aya::programs::fexit::FExit
  8812. pub fn aya::programs::fexit::FExit::detach(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8813. pub fn aya::programs::fexit::FExit::take_link(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<aya::programs::fexit::FExitLink, aya::programs::ProgramError>
  8814. impl aya::programs::fexit::FExit
  8815. pub fn aya::programs::fexit::FExit::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8816. impl aya::programs::fexit::FExit
  8817. pub fn aya::programs::fexit::FExit::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8818. impl aya::programs::fexit::FExit
  8819. pub unsafe fn aya::programs::fexit::FExit::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8820. impl aya::programs::fexit::FExit
  8821. pub fn aya::programs::fexit::FExit::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8822. impl aya::programs::fexit::FExit
  8823. pub fn aya::programs::fexit::FExit::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8824. pub fn aya::programs::fexit::FExit::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8825. impl aya::programs::fexit::FExit
  8826. pub fn aya::programs::fexit::FExit::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8827. impl core::fmt::Debug for aya::programs::fexit::FExit
  8828. pub fn aya::programs::fexit::FExit::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8829. impl core::ops::drop::Drop for aya::programs::fexit::FExit
  8830. pub fn aya::programs::fexit::FExit::drop(&mut self)
  8831. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit
  8832. pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  8833. pub fn &'a aya::programs::fexit::FExit::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fexit::FExit, aya::programs::ProgramError>
  8834. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit
  8835. pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  8836. pub fn &'a mut aya::programs::fexit::FExit::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fexit::FExit, aya::programs::ProgramError>
  8837. impl core::marker::Freeze for aya::programs::fexit::FExit
  8838. impl core::marker::Send for aya::programs::fexit::FExit
  8839. impl core::marker::Sync for aya::programs::fexit::FExit
  8840. impl core::marker::Unpin for aya::programs::fexit::FExit
  8841. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExit
  8842. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExit
  8843. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExit where U: core::convert::From<T>
  8844. pub fn aya::programs::fexit::FExit::into(self) -> U
  8845. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExit where U: core::convert::Into<T>
  8846. pub type aya::programs::fexit::FExit::Error = core::convert::Infallible
  8847. pub fn aya::programs::fexit::FExit::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8848. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExit where U: core::convert::TryFrom<T>
  8849. pub type aya::programs::fexit::FExit::Error = <U as core::convert::TryFrom<T>>::Error
  8850. pub fn aya::programs::fexit::FExit::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8851. impl<T> core::any::Any for aya::programs::fexit::FExit where T: 'static + ?core::marker::Sized
  8852. pub fn aya::programs::fexit::FExit::type_id(&self) -> core::any::TypeId
  8853. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExit where T: ?core::marker::Sized
  8854. pub fn aya::programs::fexit::FExit::borrow(&self) -> &T
  8855. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExit where T: ?core::marker::Sized
  8856. pub fn aya::programs::fexit::FExit::borrow_mut(&mut self) -> &mut T
  8857. impl<T> core::convert::From<T> for aya::programs::fexit::FExit
  8858. pub fn aya::programs::fexit::FExit::from(t: T) -> T
  8859. pub struct aya::programs::FlowDissector
  8860. impl aya::programs::flow_dissector::FlowDissector
  8861. pub const aya::programs::flow_dissector::FlowDissector::PROGRAM_TYPE: aya::programs::ProgramType
  8862. pub fn aya::programs::flow_dissector::FlowDissector::attach<T: std::os::fd::owned::AsFd>(&mut self, netns: T) -> core::result::Result<aya::programs::flow_dissector::FlowDissectorLinkId, aya::programs::ProgramError>
  8863. pub fn aya::programs::flow_dissector::FlowDissector::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8864. impl aya::programs::flow_dissector::FlowDissector
  8865. pub fn aya::programs::flow_dissector::FlowDissector::detach(&mut self, link_id: aya::programs::flow_dissector::FlowDissectorLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8866. pub fn aya::programs::flow_dissector::FlowDissector::take_link(&mut self, link_id: aya::programs::flow_dissector::FlowDissectorLinkId) -> core::result::Result<aya::programs::flow_dissector::FlowDissectorLink, aya::programs::ProgramError>
  8867. impl aya::programs::flow_dissector::FlowDissector
  8868. pub fn aya::programs::flow_dissector::FlowDissector::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8869. impl aya::programs::flow_dissector::FlowDissector
  8870. pub fn aya::programs::flow_dissector::FlowDissector::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8871. impl aya::programs::flow_dissector::FlowDissector
  8872. pub fn aya::programs::flow_dissector::FlowDissector::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8873. impl aya::programs::flow_dissector::FlowDissector
  8874. pub fn aya::programs::flow_dissector::FlowDissector::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8875. pub fn aya::programs::flow_dissector::FlowDissector::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8876. impl aya::programs::flow_dissector::FlowDissector
  8877. pub fn aya::programs::flow_dissector::FlowDissector::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8878. impl core::fmt::Debug for aya::programs::flow_dissector::FlowDissector
  8879. pub fn aya::programs::flow_dissector::FlowDissector::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8880. impl core::ops::drop::Drop for aya::programs::flow_dissector::FlowDissector
  8881. pub fn aya::programs::flow_dissector::FlowDissector::drop(&mut self)
  8882. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::flow_dissector::FlowDissector
  8883. pub type &'a aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  8884. pub fn &'a aya::programs::flow_dissector::FlowDissector::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  8885. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::flow_dissector::FlowDissector
  8886. pub type &'a mut aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  8887. pub fn &'a mut aya::programs::flow_dissector::FlowDissector::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  8888. impl core::marker::Freeze for aya::programs::flow_dissector::FlowDissector
  8889. impl core::marker::Send for aya::programs::flow_dissector::FlowDissector
  8890. impl core::marker::Sync for aya::programs::flow_dissector::FlowDissector
  8891. impl core::marker::Unpin for aya::programs::flow_dissector::FlowDissector
  8892. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::flow_dissector::FlowDissector
  8893. impl core::panic::unwind_safe::UnwindSafe for aya::programs::flow_dissector::FlowDissector
  8894. impl<T, U> core::convert::Into<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::From<T>
  8895. pub fn aya::programs::flow_dissector::FlowDissector::into(self) -> U
  8896. impl<T, U> core::convert::TryFrom<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::Into<T>
  8897. pub type aya::programs::flow_dissector::FlowDissector::Error = core::convert::Infallible
  8898. pub fn aya::programs::flow_dissector::FlowDissector::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8899. impl<T, U> core::convert::TryInto<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::TryFrom<T>
  8900. pub type aya::programs::flow_dissector::FlowDissector::Error = <U as core::convert::TryFrom<T>>::Error
  8901. pub fn aya::programs::flow_dissector::FlowDissector::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8902. impl<T> core::any::Any for aya::programs::flow_dissector::FlowDissector where T: 'static + ?core::marker::Sized
  8903. pub fn aya::programs::flow_dissector::FlowDissector::type_id(&self) -> core::any::TypeId
  8904. impl<T> core::borrow::Borrow<T> for aya::programs::flow_dissector::FlowDissector where T: ?core::marker::Sized
  8905. pub fn aya::programs::flow_dissector::FlowDissector::borrow(&self) -> &T
  8906. impl<T> core::borrow::BorrowMut<T> for aya::programs::flow_dissector::FlowDissector where T: ?core::marker::Sized
  8907. pub fn aya::programs::flow_dissector::FlowDissector::borrow_mut(&mut self) -> &mut T
  8908. impl<T> core::convert::From<T> for aya::programs::flow_dissector::FlowDissector
  8909. pub fn aya::programs::flow_dissector::FlowDissector::from(t: T) -> T
  8910. pub struct aya::programs::Iter
  8911. impl aya::programs::iter::Iter
  8912. pub const aya::programs::iter::Iter::PROGRAM_TYPE: aya::programs::ProgramType
  8913. pub fn aya::programs::iter::Iter::attach(&mut self) -> core::result::Result<aya::programs::iter::IterLinkId, aya::programs::ProgramError>
  8914. pub fn aya::programs::iter::Iter::load(&mut self, iter_type: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  8915. impl aya::programs::iter::Iter
  8916. pub fn aya::programs::iter::Iter::detach(&mut self, link_id: aya::programs::iter::IterLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8917. pub fn aya::programs::iter::Iter::take_link(&mut self, link_id: aya::programs::iter::IterLinkId) -> core::result::Result<aya::programs::iter::IterLink, aya::programs::ProgramError>
  8918. impl aya::programs::iter::Iter
  8919. pub fn aya::programs::iter::Iter::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8920. impl aya::programs::iter::Iter
  8921. pub fn aya::programs::iter::Iter::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8922. impl aya::programs::iter::Iter
  8923. pub fn aya::programs::iter::Iter::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8924. impl aya::programs::iter::Iter
  8925. pub fn aya::programs::iter::Iter::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8926. impl aya::programs::iter::Iter
  8927. pub fn aya::programs::iter::Iter::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8928. pub fn aya::programs::iter::Iter::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8929. impl aya::programs::iter::Iter
  8930. pub fn aya::programs::iter::Iter::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8931. impl core::fmt::Debug for aya::programs::iter::Iter
  8932. pub fn aya::programs::iter::Iter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8933. impl core::ops::drop::Drop for aya::programs::iter::Iter
  8934. pub fn aya::programs::iter::Iter::drop(&mut self)
  8935. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::iter::Iter
  8936. pub type &'a aya::programs::iter::Iter::Error = aya::programs::ProgramError
  8937. pub fn &'a aya::programs::iter::Iter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::iter::Iter, aya::programs::ProgramError>
  8938. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::iter::Iter
  8939. pub type &'a mut aya::programs::iter::Iter::Error = aya::programs::ProgramError
  8940. pub fn &'a mut aya::programs::iter::Iter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::iter::Iter, aya::programs::ProgramError>
  8941. impl core::marker::Freeze for aya::programs::iter::Iter
  8942. impl core::marker::Send for aya::programs::iter::Iter
  8943. impl core::marker::Sync for aya::programs::iter::Iter
  8944. impl core::marker::Unpin for aya::programs::iter::Iter
  8945. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::Iter
  8946. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::Iter
  8947. impl<T, U> core::convert::Into<U> for aya::programs::iter::Iter where U: core::convert::From<T>
  8948. pub fn aya::programs::iter::Iter::into(self) -> U
  8949. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::Iter where U: core::convert::Into<T>
  8950. pub type aya::programs::iter::Iter::Error = core::convert::Infallible
  8951. pub fn aya::programs::iter::Iter::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8952. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::Iter where U: core::convert::TryFrom<T>
  8953. pub type aya::programs::iter::Iter::Error = <U as core::convert::TryFrom<T>>::Error
  8954. pub fn aya::programs::iter::Iter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8955. impl<T> core::any::Any for aya::programs::iter::Iter where T: 'static + ?core::marker::Sized
  8956. pub fn aya::programs::iter::Iter::type_id(&self) -> core::any::TypeId
  8957. impl<T> core::borrow::Borrow<T> for aya::programs::iter::Iter where T: ?core::marker::Sized
  8958. pub fn aya::programs::iter::Iter::borrow(&self) -> &T
  8959. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::Iter where T: ?core::marker::Sized
  8960. pub fn aya::programs::iter::Iter::borrow_mut(&mut self) -> &mut T
  8961. impl<T> core::convert::From<T> for aya::programs::iter::Iter
  8962. pub fn aya::programs::iter::Iter::from(t: T) -> T
  8963. pub struct aya::programs::KProbe
  8964. impl aya::programs::kprobe::KProbe
  8965. pub const aya::programs::kprobe::KProbe::PROGRAM_TYPE: aya::programs::ProgramType
  8966. pub fn aya::programs::kprobe::KProbe::attach<T: core::convert::AsRef<std::ffi::os_str::OsStr>>(&mut self, fn_name: T, offset: u64) -> core::result::Result<aya::programs::kprobe::KProbeLinkId, aya::programs::ProgramError>
  8967. pub fn aya::programs::kprobe::KProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  8968. pub fn aya::programs::kprobe::KProbe::kind(&self) -> aya::programs::ProbeKind
  8969. pub fn aya::programs::kprobe::KProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8970. impl aya::programs::kprobe::KProbe
  8971. pub fn aya::programs::kprobe::KProbe::detach(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8972. pub fn aya::programs::kprobe::KProbe::take_link(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<aya::programs::kprobe::KProbeLink, aya::programs::ProgramError>
  8973. impl aya::programs::kprobe::KProbe
  8974. pub fn aya::programs::kprobe::KProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8975. impl aya::programs::kprobe::KProbe
  8976. pub unsafe fn aya::programs::kprobe::KProbe::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  8977. impl aya::programs::kprobe::KProbe
  8978. pub fn aya::programs::kprobe::KProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8979. impl aya::programs::kprobe::KProbe
  8980. pub fn aya::programs::kprobe::KProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8981. pub fn aya::programs::kprobe::KProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8982. impl aya::programs::kprobe::KProbe
  8983. pub fn aya::programs::kprobe::KProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8984. impl core::fmt::Debug for aya::programs::kprobe::KProbe
  8985. pub fn aya::programs::kprobe::KProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8986. impl core::ops::drop::Drop for aya::programs::kprobe::KProbe
  8987. pub fn aya::programs::kprobe::KProbe::drop(&mut self)
  8988. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe
  8989. pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  8990. pub fn &'a aya::programs::kprobe::KProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  8991. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe
  8992. pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  8993. pub fn &'a mut aya::programs::kprobe::KProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  8994. impl core::marker::Freeze for aya::programs::kprobe::KProbe
  8995. impl core::marker::Send for aya::programs::kprobe::KProbe
  8996. impl core::marker::Sync for aya::programs::kprobe::KProbe
  8997. impl core::marker::Unpin for aya::programs::kprobe::KProbe
  8998. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbe
  8999. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbe
  9000. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbe where U: core::convert::From<T>
  9001. pub fn aya::programs::kprobe::KProbe::into(self) -> U
  9002. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbe where U: core::convert::Into<T>
  9003. pub type aya::programs::kprobe::KProbe::Error = core::convert::Infallible
  9004. pub fn aya::programs::kprobe::KProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9005. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbe where U: core::convert::TryFrom<T>
  9006. pub type aya::programs::kprobe::KProbe::Error = <U as core::convert::TryFrom<T>>::Error
  9007. pub fn aya::programs::kprobe::KProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9008. impl<T> core::any::Any for aya::programs::kprobe::KProbe where T: 'static + ?core::marker::Sized
  9009. pub fn aya::programs::kprobe::KProbe::type_id(&self) -> core::any::TypeId
  9010. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbe where T: ?core::marker::Sized
  9011. pub fn aya::programs::kprobe::KProbe::borrow(&self) -> &T
  9012. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbe where T: ?core::marker::Sized
  9013. pub fn aya::programs::kprobe::KProbe::borrow_mut(&mut self) -> &mut T
  9014. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbe
  9015. pub fn aya::programs::kprobe::KProbe::from(t: T) -> T
  9016. pub struct aya::programs::LinkOrder
  9017. impl aya::programs::links::LinkOrder
  9018. pub fn aya::programs::links::LinkOrder::after_link<L: aya::programs::MultiProgLink>(link: &L) -> core::result::Result<Self, aya::programs::links::LinkError>
  9019. pub fn aya::programs::links::LinkOrder::after_program<P: aya::programs::MultiProgram>(program: &P) -> core::result::Result<Self, aya::programs::ProgramError>
  9020. pub fn aya::programs::links::LinkOrder::after_program_id(id: aya::programs::ProgramId) -> Self
  9021. pub fn aya::programs::links::LinkOrder::before_link<L: aya::programs::MultiProgLink>(link: &L) -> core::result::Result<Self, aya::programs::links::LinkError>
  9022. pub fn aya::programs::links::LinkOrder::before_program<P: aya::programs::MultiProgram>(program: &P) -> core::result::Result<Self, aya::programs::ProgramError>
  9023. pub fn aya::programs::links::LinkOrder::before_program_id(id: aya::programs::ProgramId) -> Self
  9024. pub fn aya::programs::links::LinkOrder::first() -> Self
  9025. pub fn aya::programs::links::LinkOrder::last() -> Self
  9026. impl core::default::Default for aya::programs::links::LinkOrder
  9027. pub fn aya::programs::links::LinkOrder::default() -> Self
  9028. impl core::fmt::Debug for aya::programs::links::LinkOrder
  9029. pub fn aya::programs::links::LinkOrder::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9030. impl core::marker::Freeze for aya::programs::links::LinkOrder
  9031. impl core::marker::Send for aya::programs::links::LinkOrder
  9032. impl core::marker::Sync for aya::programs::links::LinkOrder
  9033. impl core::marker::Unpin for aya::programs::links::LinkOrder
  9034. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkOrder
  9035. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkOrder
  9036. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkOrder where U: core::convert::From<T>
  9037. pub fn aya::programs::links::LinkOrder::into(self) -> U
  9038. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkOrder where U: core::convert::Into<T>
  9039. pub type aya::programs::links::LinkOrder::Error = core::convert::Infallible
  9040. pub fn aya::programs::links::LinkOrder::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9041. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkOrder where U: core::convert::TryFrom<T>
  9042. pub type aya::programs::links::LinkOrder::Error = <U as core::convert::TryFrom<T>>::Error
  9043. pub fn aya::programs::links::LinkOrder::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9044. impl<T> core::any::Any for aya::programs::links::LinkOrder where T: 'static + ?core::marker::Sized
  9045. pub fn aya::programs::links::LinkOrder::type_id(&self) -> core::any::TypeId
  9046. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkOrder where T: ?core::marker::Sized
  9047. pub fn aya::programs::links::LinkOrder::borrow(&self) -> &T
  9048. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkOrder where T: ?core::marker::Sized
  9049. pub fn aya::programs::links::LinkOrder::borrow_mut(&mut self) -> &mut T
  9050. impl<T> core::convert::From<T> for aya::programs::links::LinkOrder
  9051. pub fn aya::programs::links::LinkOrder::from(t: T) -> T
  9052. pub struct aya::programs::LircMode2
  9053. impl aya::programs::lirc_mode2::LircMode2
  9054. pub const aya::programs::lirc_mode2::LircMode2::PROGRAM_TYPE: aya::programs::ProgramType
  9055. pub fn aya::programs::lirc_mode2::LircMode2::attach<T: std::os::fd::owned::AsFd>(&mut self, lircdev: T) -> core::result::Result<aya::programs::lirc_mode2::LircLinkId, aya::programs::ProgramError>
  9056. pub fn aya::programs::lirc_mode2::LircMode2::detach(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9057. pub fn aya::programs::lirc_mode2::LircMode2::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9058. pub fn aya::programs::lirc_mode2::LircMode2::query<T: std::os::fd::owned::AsFd>(target_fd: T) -> core::result::Result<alloc::vec::Vec<aya::programs::lirc_mode2::LircLink>, aya::programs::ProgramError>
  9059. pub fn aya::programs::lirc_mode2::LircMode2::take_link(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<aya::programs::lirc_mode2::LircLink, aya::programs::ProgramError>
  9060. impl aya::programs::lirc_mode2::LircMode2
  9061. pub fn aya::programs::lirc_mode2::LircMode2::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9062. impl aya::programs::lirc_mode2::LircMode2
  9063. pub fn aya::programs::lirc_mode2::LircMode2::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9064. impl aya::programs::lirc_mode2::LircMode2
  9065. pub fn aya::programs::lirc_mode2::LircMode2::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9066. impl aya::programs::lirc_mode2::LircMode2
  9067. pub fn aya::programs::lirc_mode2::LircMode2::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9068. impl aya::programs::lirc_mode2::LircMode2
  9069. pub fn aya::programs::lirc_mode2::LircMode2::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9070. pub fn aya::programs::lirc_mode2::LircMode2::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9071. impl aya::programs::lirc_mode2::LircMode2
  9072. pub fn aya::programs::lirc_mode2::LircMode2::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9073. impl core::fmt::Debug for aya::programs::lirc_mode2::LircMode2
  9074. pub fn aya::programs::lirc_mode2::LircMode2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9075. impl core::ops::drop::Drop for aya::programs::lirc_mode2::LircMode2
  9076. pub fn aya::programs::lirc_mode2::LircMode2::drop(&mut self)
  9077. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2
  9078. pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  9079. pub fn &'a aya::programs::lirc_mode2::LircMode2::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  9080. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2
  9081. pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  9082. pub fn &'a mut aya::programs::lirc_mode2::LircMode2::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  9083. impl core::marker::Freeze for aya::programs::lirc_mode2::LircMode2
  9084. impl core::marker::Send for aya::programs::lirc_mode2::LircMode2
  9085. impl core::marker::Sync for aya::programs::lirc_mode2::LircMode2
  9086. impl core::marker::Unpin for aya::programs::lirc_mode2::LircMode2
  9087. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircMode2
  9088. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircMode2
  9089. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::From<T>
  9090. pub fn aya::programs::lirc_mode2::LircMode2::into(self) -> U
  9091. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::Into<T>
  9092. pub type aya::programs::lirc_mode2::LircMode2::Error = core::convert::Infallible
  9093. pub fn aya::programs::lirc_mode2::LircMode2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9094. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::TryFrom<T>
  9095. pub type aya::programs::lirc_mode2::LircMode2::Error = <U as core::convert::TryFrom<T>>::Error
  9096. pub fn aya::programs::lirc_mode2::LircMode2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9097. impl<T> core::any::Any for aya::programs::lirc_mode2::LircMode2 where T: 'static + ?core::marker::Sized
  9098. pub fn aya::programs::lirc_mode2::LircMode2::type_id(&self) -> core::any::TypeId
  9099. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircMode2 where T: ?core::marker::Sized
  9100. pub fn aya::programs::lirc_mode2::LircMode2::borrow(&self) -> &T
  9101. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircMode2 where T: ?core::marker::Sized
  9102. pub fn aya::programs::lirc_mode2::LircMode2::borrow_mut(&mut self) -> &mut T
  9103. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircMode2
  9104. pub fn aya::programs::lirc_mode2::LircMode2::from(t: T) -> T
  9105. pub struct aya::programs::Lsm
  9106. impl aya::programs::lsm::Lsm
  9107. pub const aya::programs::lsm::Lsm::PROGRAM_TYPE: aya::programs::ProgramType
  9108. pub fn aya::programs::lsm::Lsm::attach(&mut self) -> core::result::Result<aya::programs::lsm::LsmLinkId, aya::programs::ProgramError>
  9109. pub fn aya::programs::lsm::Lsm::load(&mut self, lsm_hook_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  9110. impl aya::programs::lsm::Lsm
  9111. pub fn aya::programs::lsm::Lsm::detach(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9112. pub fn aya::programs::lsm::Lsm::take_link(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<aya::programs::lsm::LsmLink, aya::programs::ProgramError>
  9113. impl aya::programs::lsm::Lsm
  9114. pub fn aya::programs::lsm::Lsm::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9115. impl aya::programs::lsm::Lsm
  9116. pub fn aya::programs::lsm::Lsm::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9117. impl aya::programs::lsm::Lsm
  9118. pub fn aya::programs::lsm::Lsm::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9119. impl aya::programs::lsm::Lsm
  9120. pub fn aya::programs::lsm::Lsm::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9121. impl aya::programs::lsm::Lsm
  9122. pub fn aya::programs::lsm::Lsm::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9123. pub fn aya::programs::lsm::Lsm::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9124. impl aya::programs::lsm::Lsm
  9125. pub fn aya::programs::lsm::Lsm::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9126. impl core::fmt::Debug for aya::programs::lsm::Lsm
  9127. pub fn aya::programs::lsm::Lsm::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9128. impl core::ops::drop::Drop for aya::programs::lsm::Lsm
  9129. pub fn aya::programs::lsm::Lsm::drop(&mut self)
  9130. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm
  9131. pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  9132. pub fn &'a aya::programs::lsm::Lsm::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lsm::Lsm, aya::programs::ProgramError>
  9133. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm
  9134. pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  9135. pub fn &'a mut aya::programs::lsm::Lsm::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lsm::Lsm, aya::programs::ProgramError>
  9136. impl core::marker::Freeze for aya::programs::lsm::Lsm
  9137. impl core::marker::Send for aya::programs::lsm::Lsm
  9138. impl core::marker::Sync for aya::programs::lsm::Lsm
  9139. impl core::marker::Unpin for aya::programs::lsm::Lsm
  9140. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::Lsm
  9141. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::Lsm
  9142. impl<T, U> core::convert::Into<U> for aya::programs::lsm::Lsm where U: core::convert::From<T>
  9143. pub fn aya::programs::lsm::Lsm::into(self) -> U
  9144. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::Lsm where U: core::convert::Into<T>
  9145. pub type aya::programs::lsm::Lsm::Error = core::convert::Infallible
  9146. pub fn aya::programs::lsm::Lsm::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9147. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::Lsm where U: core::convert::TryFrom<T>
  9148. pub type aya::programs::lsm::Lsm::Error = <U as core::convert::TryFrom<T>>::Error
  9149. pub fn aya::programs::lsm::Lsm::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9150. impl<T> core::any::Any for aya::programs::lsm::Lsm where T: 'static + ?core::marker::Sized
  9151. pub fn aya::programs::lsm::Lsm::type_id(&self) -> core::any::TypeId
  9152. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::Lsm where T: ?core::marker::Sized
  9153. pub fn aya::programs::lsm::Lsm::borrow(&self) -> &T
  9154. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::Lsm where T: ?core::marker::Sized
  9155. pub fn aya::programs::lsm::Lsm::borrow_mut(&mut self) -> &mut T
  9156. impl<T> core::convert::From<T> for aya::programs::lsm::Lsm
  9157. pub fn aya::programs::lsm::Lsm::from(t: T) -> T
  9158. pub struct aya::programs::PerfEvent
  9159. impl aya::programs::perf_event::PerfEvent
  9160. pub const aya::programs::perf_event::PerfEvent::PROGRAM_TYPE: aya::programs::ProgramType
  9161. pub fn aya::programs::perf_event::PerfEvent::attach(&mut self, perf_type: aya::programs::perf_event::PerfTypeId, config: u64, scope: aya::programs::perf_event::PerfEventScope, sample_policy: aya::programs::perf_event::SamplePolicy, inherit: bool) -> core::result::Result<aya::programs::perf_event::PerfEventLinkId, aya::programs::ProgramError>
  9162. pub fn aya::programs::perf_event::PerfEvent::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9163. impl aya::programs::perf_event::PerfEvent
  9164. pub fn aya::programs::perf_event::PerfEvent::detach(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9165. pub fn aya::programs::perf_event::PerfEvent::take_link(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<aya::programs::perf_event::PerfEventLink, aya::programs::ProgramError>
  9166. impl aya::programs::perf_event::PerfEvent
  9167. pub fn aya::programs::perf_event::PerfEvent::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9168. impl aya::programs::perf_event::PerfEvent
  9169. pub fn aya::programs::perf_event::PerfEvent::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9170. impl aya::programs::perf_event::PerfEvent
  9171. pub fn aya::programs::perf_event::PerfEvent::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9172. impl aya::programs::perf_event::PerfEvent
  9173. pub fn aya::programs::perf_event::PerfEvent::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9174. impl aya::programs::perf_event::PerfEvent
  9175. pub fn aya::programs::perf_event::PerfEvent::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9176. pub fn aya::programs::perf_event::PerfEvent::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9177. impl aya::programs::perf_event::PerfEvent
  9178. pub fn aya::programs::perf_event::PerfEvent::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9179. impl core::fmt::Debug for aya::programs::perf_event::PerfEvent
  9180. pub fn aya::programs::perf_event::PerfEvent::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9181. impl core::ops::drop::Drop for aya::programs::perf_event::PerfEvent
  9182. pub fn aya::programs::perf_event::PerfEvent::drop(&mut self)
  9183. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent
  9184. pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  9185. pub fn &'a aya::programs::perf_event::PerfEvent::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  9186. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent
  9187. pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  9188. pub fn &'a mut aya::programs::perf_event::PerfEvent::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  9189. impl core::marker::Freeze for aya::programs::perf_event::PerfEvent
  9190. impl core::marker::Send for aya::programs::perf_event::PerfEvent
  9191. impl core::marker::Sync for aya::programs::perf_event::PerfEvent
  9192. impl core::marker::Unpin for aya::programs::perf_event::PerfEvent
  9193. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEvent
  9194. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEvent
  9195. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEvent where U: core::convert::From<T>
  9196. pub fn aya::programs::perf_event::PerfEvent::into(self) -> U
  9197. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEvent where U: core::convert::Into<T>
  9198. pub type aya::programs::perf_event::PerfEvent::Error = core::convert::Infallible
  9199. pub fn aya::programs::perf_event::PerfEvent::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9200. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEvent where U: core::convert::TryFrom<T>
  9201. pub type aya::programs::perf_event::PerfEvent::Error = <U as core::convert::TryFrom<T>>::Error
  9202. pub fn aya::programs::perf_event::PerfEvent::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9203. impl<T> core::any::Any for aya::programs::perf_event::PerfEvent where T: 'static + ?core::marker::Sized
  9204. pub fn aya::programs::perf_event::PerfEvent::type_id(&self) -> core::any::TypeId
  9205. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEvent where T: ?core::marker::Sized
  9206. pub fn aya::programs::perf_event::PerfEvent::borrow(&self) -> &T
  9207. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEvent where T: ?core::marker::Sized
  9208. pub fn aya::programs::perf_event::PerfEvent::borrow_mut(&mut self) -> &mut T
  9209. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEvent
  9210. pub fn aya::programs::perf_event::PerfEvent::from(t: T) -> T
  9211. pub struct aya::programs::ProgramFd(_)
  9212. impl aya::programs::ProgramFd
  9213. pub fn aya::programs::ProgramFd::try_clone(&self) -> std::io::error::Result<Self>
  9214. impl core::fmt::Debug for aya::programs::ProgramFd
  9215. pub fn aya::programs::ProgramFd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9216. impl std::os::fd::owned::AsFd for aya::programs::ProgramFd
  9217. pub fn aya::programs::ProgramFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  9218. impl core::marker::Freeze for aya::programs::ProgramFd
  9219. impl core::marker::Send for aya::programs::ProgramFd
  9220. impl core::marker::Sync for aya::programs::ProgramFd
  9221. impl core::marker::Unpin for aya::programs::ProgramFd
  9222. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramFd
  9223. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramFd
  9224. impl<T, U> core::convert::Into<U> for aya::programs::ProgramFd where U: core::convert::From<T>
  9225. pub fn aya::programs::ProgramFd::into(self) -> U
  9226. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramFd where U: core::convert::Into<T>
  9227. pub type aya::programs::ProgramFd::Error = core::convert::Infallible
  9228. pub fn aya::programs::ProgramFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9229. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramFd where U: core::convert::TryFrom<T>
  9230. pub type aya::programs::ProgramFd::Error = <U as core::convert::TryFrom<T>>::Error
  9231. pub fn aya::programs::ProgramFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9232. impl<T> core::any::Any for aya::programs::ProgramFd where T: 'static + ?core::marker::Sized
  9233. pub fn aya::programs::ProgramFd::type_id(&self) -> core::any::TypeId
  9234. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramFd where T: ?core::marker::Sized
  9235. pub fn aya::programs::ProgramFd::borrow(&self) -> &T
  9236. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramFd where T: ?core::marker::Sized
  9237. pub fn aya::programs::ProgramFd::borrow_mut(&mut self) -> &mut T
  9238. impl<T> core::convert::From<T> for aya::programs::ProgramFd
  9239. pub fn aya::programs::ProgramFd::from(t: T) -> T
  9240. pub struct aya::programs::ProgramId(_)
  9241. impl aya::programs::ProgramId
  9242. pub unsafe fn aya::programs::ProgramId::new(id: u32) -> Self
  9243. impl core::marker::Freeze for aya::programs::ProgramId
  9244. impl core::marker::Send for aya::programs::ProgramId
  9245. impl core::marker::Sync for aya::programs::ProgramId
  9246. impl core::marker::Unpin for aya::programs::ProgramId
  9247. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramId
  9248. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramId
  9249. impl<T, U> core::convert::Into<U> for aya::programs::ProgramId where U: core::convert::From<T>
  9250. pub fn aya::programs::ProgramId::into(self) -> U
  9251. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramId where U: core::convert::Into<T>
  9252. pub type aya::programs::ProgramId::Error = core::convert::Infallible
  9253. pub fn aya::programs::ProgramId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9254. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramId where U: core::convert::TryFrom<T>
  9255. pub type aya::programs::ProgramId::Error = <U as core::convert::TryFrom<T>>::Error
  9256. pub fn aya::programs::ProgramId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9257. impl<T> core::any::Any for aya::programs::ProgramId where T: 'static + ?core::marker::Sized
  9258. pub fn aya::programs::ProgramId::type_id(&self) -> core::any::TypeId
  9259. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramId where T: ?core::marker::Sized
  9260. pub fn aya::programs::ProgramId::borrow(&self) -> &T
  9261. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramId where T: ?core::marker::Sized
  9262. pub fn aya::programs::ProgramId::borrow_mut(&mut self) -> &mut T
  9263. impl<T> core::convert::From<T> for aya::programs::ProgramId
  9264. pub fn aya::programs::ProgramId::from(t: T) -> T
  9265. pub struct aya::programs::ProgramInfo(_)
  9266. impl aya::programs::ProgramInfo
  9267. pub fn aya::programs::ProgramInfo::btf_id(&self) -> core::option::Option<u32>
  9268. pub fn aya::programs::ProgramInfo::created_by_uid(&self) -> core::option::Option<u32>
  9269. pub fn aya::programs::ProgramInfo::fd(&self) -> core::result::Result<aya::programs::ProgramFd, aya::programs::ProgramError>
  9270. pub fn aya::programs::ProgramInfo::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9271. pub fn aya::programs::ProgramInfo::gpl_compatible(&self) -> core::option::Option<bool>
  9272. pub fn aya::programs::ProgramInfo::id(&self) -> u32
  9273. pub fn aya::programs::ProgramInfo::loaded_at(&self) -> core::option::Option<std::time::SystemTime>
  9274. pub fn aya::programs::ProgramInfo::map_ids(&self) -> core::result::Result<core::option::Option<alloc::vec::Vec<u32>>, aya::programs::ProgramError>
  9275. pub fn aya::programs::ProgramInfo::memory_locked(&self) -> core::result::Result<u32, aya::programs::ProgramError>
  9276. pub fn aya::programs::ProgramInfo::name(&self) -> &[u8]
  9277. pub fn aya::programs::ProgramInfo::name_as_str(&self) -> core::option::Option<&str>
  9278. pub fn aya::programs::ProgramInfo::program_type(&self) -> core::result::Result<aya::programs::ProgramType, aya::programs::ProgramError>
  9279. pub fn aya::programs::ProgramInfo::run_count(&self) -> u64
  9280. pub fn aya::programs::ProgramInfo::run_time(&self) -> core::time::Duration
  9281. pub fn aya::programs::ProgramInfo::size_jitted(&self) -> u32
  9282. pub fn aya::programs::ProgramInfo::size_translated(&self) -> core::option::Option<u32>
  9283. pub fn aya::programs::ProgramInfo::tag(&self) -> u64
  9284. pub fn aya::programs::ProgramInfo::verified_instruction_count(&self) -> core::option::Option<u32>
  9285. impl core::fmt::Debug for aya::programs::ProgramInfo
  9286. pub fn aya::programs::ProgramInfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9287. impl core::marker::Freeze for aya::programs::ProgramInfo
  9288. impl core::marker::Send for aya::programs::ProgramInfo
  9289. impl core::marker::Sync for aya::programs::ProgramInfo
  9290. impl core::marker::Unpin for aya::programs::ProgramInfo
  9291. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramInfo
  9292. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramInfo
  9293. impl<T, U> core::convert::Into<U> for aya::programs::ProgramInfo where U: core::convert::From<T>
  9294. pub fn aya::programs::ProgramInfo::into(self) -> U
  9295. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramInfo where U: core::convert::Into<T>
  9296. pub type aya::programs::ProgramInfo::Error = core::convert::Infallible
  9297. pub fn aya::programs::ProgramInfo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9298. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramInfo where U: core::convert::TryFrom<T>
  9299. pub type aya::programs::ProgramInfo::Error = <U as core::convert::TryFrom<T>>::Error
  9300. pub fn aya::programs::ProgramInfo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9301. impl<T> core::any::Any for aya::programs::ProgramInfo where T: 'static + ?core::marker::Sized
  9302. pub fn aya::programs::ProgramInfo::type_id(&self) -> core::any::TypeId
  9303. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramInfo where T: ?core::marker::Sized
  9304. pub fn aya::programs::ProgramInfo::borrow(&self) -> &T
  9305. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramInfo where T: ?core::marker::Sized
  9306. pub fn aya::programs::ProgramInfo::borrow_mut(&mut self) -> &mut T
  9307. impl<T> core::convert::From<T> for aya::programs::ProgramInfo
  9308. pub fn aya::programs::ProgramInfo::from(t: T) -> T
  9309. pub struct aya::programs::RawTracePoint
  9310. impl aya::programs::raw_trace_point::RawTracePoint
  9311. pub const aya::programs::raw_trace_point::RawTracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  9312. pub fn aya::programs::raw_trace_point::RawTracePoint::attach(&mut self, tp_name: &str) -> core::result::Result<aya::programs::raw_trace_point::RawTracePointLinkId, aya::programs::ProgramError>
  9313. pub fn aya::programs::raw_trace_point::RawTracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9314. impl aya::programs::raw_trace_point::RawTracePoint
  9315. pub fn aya::programs::raw_trace_point::RawTracePoint::detach(&mut self, link_id: aya::programs::raw_trace_point::RawTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9316. pub fn aya::programs::raw_trace_point::RawTracePoint::take_link(&mut self, link_id: aya::programs::raw_trace_point::RawTracePointLinkId) -> core::result::Result<aya::programs::raw_trace_point::RawTracePointLink, aya::programs::ProgramError>
  9317. impl aya::programs::raw_trace_point::RawTracePoint
  9318. pub fn aya::programs::raw_trace_point::RawTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9319. impl aya::programs::raw_trace_point::RawTracePoint
  9320. pub fn aya::programs::raw_trace_point::RawTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9321. impl aya::programs::raw_trace_point::RawTracePoint
  9322. pub fn aya::programs::raw_trace_point::RawTracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9323. impl aya::programs::raw_trace_point::RawTracePoint
  9324. pub fn aya::programs::raw_trace_point::RawTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9325. impl aya::programs::raw_trace_point::RawTracePoint
  9326. pub fn aya::programs::raw_trace_point::RawTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9327. pub fn aya::programs::raw_trace_point::RawTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9328. impl aya::programs::raw_trace_point::RawTracePoint
  9329. pub fn aya::programs::raw_trace_point::RawTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9330. impl core::fmt::Debug for aya::programs::raw_trace_point::RawTracePoint
  9331. pub fn aya::programs::raw_trace_point::RawTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9332. impl core::ops::drop::Drop for aya::programs::raw_trace_point::RawTracePoint
  9333. pub fn aya::programs::raw_trace_point::RawTracePoint::drop(&mut self)
  9334. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::raw_trace_point::RawTracePoint
  9335. pub type &'a aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  9336. pub fn &'a aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  9337. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::raw_trace_point::RawTracePoint
  9338. pub type &'a mut aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  9339. pub fn &'a mut aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  9340. impl core::marker::Freeze for aya::programs::raw_trace_point::RawTracePoint
  9341. impl core::marker::Send for aya::programs::raw_trace_point::RawTracePoint
  9342. impl core::marker::Sync for aya::programs::raw_trace_point::RawTracePoint
  9343. impl core::marker::Unpin for aya::programs::raw_trace_point::RawTracePoint
  9344. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::raw_trace_point::RawTracePoint
  9345. impl core::panic::unwind_safe::UnwindSafe for aya::programs::raw_trace_point::RawTracePoint
  9346. impl<T, U> core::convert::Into<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::From<T>
  9347. pub fn aya::programs::raw_trace_point::RawTracePoint::into(self) -> U
  9348. impl<T, U> core::convert::TryFrom<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::Into<T>
  9349. pub type aya::programs::raw_trace_point::RawTracePoint::Error = core::convert::Infallible
  9350. pub fn aya::programs::raw_trace_point::RawTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9351. impl<T, U> core::convert::TryInto<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::TryFrom<T>
  9352. pub type aya::programs::raw_trace_point::RawTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  9353. pub fn aya::programs::raw_trace_point::RawTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9354. impl<T> core::any::Any for aya::programs::raw_trace_point::RawTracePoint where T: 'static + ?core::marker::Sized
  9355. pub fn aya::programs::raw_trace_point::RawTracePoint::type_id(&self) -> core::any::TypeId
  9356. impl<T> core::borrow::Borrow<T> for aya::programs::raw_trace_point::RawTracePoint where T: ?core::marker::Sized
  9357. pub fn aya::programs::raw_trace_point::RawTracePoint::borrow(&self) -> &T
  9358. impl<T> core::borrow::BorrowMut<T> for aya::programs::raw_trace_point::RawTracePoint where T: ?core::marker::Sized
  9359. pub fn aya::programs::raw_trace_point::RawTracePoint::borrow_mut(&mut self) -> &mut T
  9360. impl<T> core::convert::From<T> for aya::programs::raw_trace_point::RawTracePoint
  9361. pub fn aya::programs::raw_trace_point::RawTracePoint::from(t: T) -> T
  9362. pub struct aya::programs::SchedClassifier
  9363. impl aya::programs::tc::SchedClassifier
  9364. pub const aya::programs::tc::SchedClassifier::PROGRAM_TYPE: aya::programs::ProgramType
  9365. pub fn aya::programs::tc::SchedClassifier::attach(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  9366. pub fn aya::programs::tc::SchedClassifier::attach_to_link(&mut self, link: aya::programs::tc::SchedClassifierLink) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  9367. pub fn aya::programs::tc::SchedClassifier::attach_with_options(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType, options: aya::programs::tc::TcAttachOptions) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  9368. pub fn aya::programs::tc::SchedClassifier::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9369. pub fn aya::programs::tc::SchedClassifier::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9370. pub fn aya::programs::tc::SchedClassifier::query_tcx(interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result<(u64, alloc::vec::Vec<aya::programs::ProgramInfo>), aya::programs::ProgramError>
  9371. impl aya::programs::tc::SchedClassifier
  9372. pub fn aya::programs::tc::SchedClassifier::detach(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9373. pub fn aya::programs::tc::SchedClassifier::take_link(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<aya::programs::tc::SchedClassifierLink, aya::programs::ProgramError>
  9374. impl aya::programs::tc::SchedClassifier
  9375. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9376. impl aya::programs::tc::SchedClassifier
  9377. pub fn aya::programs::tc::SchedClassifier::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9378. impl aya::programs::tc::SchedClassifier
  9379. pub fn aya::programs::tc::SchedClassifier::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9380. impl aya::programs::tc::SchedClassifier
  9381. pub fn aya::programs::tc::SchedClassifier::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9382. pub fn aya::programs::tc::SchedClassifier::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9383. impl aya::programs::tc::SchedClassifier
  9384. pub fn aya::programs::tc::SchedClassifier::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9385. impl aya::programs::MultiProgram for aya::programs::tc::SchedClassifier
  9386. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::ProgramError>
  9387. impl core::fmt::Debug for aya::programs::tc::SchedClassifier
  9388. pub fn aya::programs::tc::SchedClassifier::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9389. impl core::ops::drop::Drop for aya::programs::tc::SchedClassifier
  9390. pub fn aya::programs::tc::SchedClassifier::drop(&mut self)
  9391. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier
  9392. pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  9393. pub fn &'a aya::programs::tc::SchedClassifier::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  9394. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier
  9395. pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  9396. pub fn &'a mut aya::programs::tc::SchedClassifier::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  9397. impl core::marker::Freeze for aya::programs::tc::SchedClassifier
  9398. impl core::marker::Send for aya::programs::tc::SchedClassifier
  9399. impl core::marker::Sync for aya::programs::tc::SchedClassifier
  9400. impl core::marker::Unpin for aya::programs::tc::SchedClassifier
  9401. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifier
  9402. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifier
  9403. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifier where U: core::convert::From<T>
  9404. pub fn aya::programs::tc::SchedClassifier::into(self) -> U
  9405. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifier where U: core::convert::Into<T>
  9406. pub type aya::programs::tc::SchedClassifier::Error = core::convert::Infallible
  9407. pub fn aya::programs::tc::SchedClassifier::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9408. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifier where U: core::convert::TryFrom<T>
  9409. pub type aya::programs::tc::SchedClassifier::Error = <U as core::convert::TryFrom<T>>::Error
  9410. pub fn aya::programs::tc::SchedClassifier::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9411. impl<T> core::any::Any for aya::programs::tc::SchedClassifier where T: 'static + ?core::marker::Sized
  9412. pub fn aya::programs::tc::SchedClassifier::type_id(&self) -> core::any::TypeId
  9413. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifier where T: ?core::marker::Sized
  9414. pub fn aya::programs::tc::SchedClassifier::borrow(&self) -> &T
  9415. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifier where T: ?core::marker::Sized
  9416. pub fn aya::programs::tc::SchedClassifier::borrow_mut(&mut self) -> &mut T
  9417. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifier
  9418. pub fn aya::programs::tc::SchedClassifier::from(t: T) -> T
  9419. pub struct aya::programs::SkLookup
  9420. impl aya::programs::sk_lookup::SkLookup
  9421. pub const aya::programs::sk_lookup::SkLookup::PROGRAM_TYPE: aya::programs::ProgramType
  9422. pub fn aya::programs::sk_lookup::SkLookup::attach<T: std::os::fd::owned::AsFd>(&mut self, netns: T) -> core::result::Result<aya::programs::sk_lookup::SkLookupLinkId, aya::programs::ProgramError>
  9423. pub fn aya::programs::sk_lookup::SkLookup::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9424. impl aya::programs::sk_lookup::SkLookup
  9425. pub fn aya::programs::sk_lookup::SkLookup::detach(&mut self, link_id: aya::programs::sk_lookup::SkLookupLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9426. pub fn aya::programs::sk_lookup::SkLookup::take_link(&mut self, link_id: aya::programs::sk_lookup::SkLookupLinkId) -> core::result::Result<aya::programs::sk_lookup::SkLookupLink, aya::programs::ProgramError>
  9427. impl aya::programs::sk_lookup::SkLookup
  9428. pub fn aya::programs::sk_lookup::SkLookup::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9429. impl aya::programs::sk_lookup::SkLookup
  9430. pub fn aya::programs::sk_lookup::SkLookup::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9431. impl aya::programs::sk_lookup::SkLookup
  9432. pub fn aya::programs::sk_lookup::SkLookup::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9433. impl aya::programs::sk_lookup::SkLookup
  9434. pub fn aya::programs::sk_lookup::SkLookup::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9435. impl aya::programs::sk_lookup::SkLookup
  9436. pub fn aya::programs::sk_lookup::SkLookup::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9437. pub fn aya::programs::sk_lookup::SkLookup::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9438. impl aya::programs::sk_lookup::SkLookup
  9439. pub fn aya::programs::sk_lookup::SkLookup::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9440. impl core::fmt::Debug for aya::programs::sk_lookup::SkLookup
  9441. pub fn aya::programs::sk_lookup::SkLookup::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9442. impl core::ops::drop::Drop for aya::programs::sk_lookup::SkLookup
  9443. pub fn aya::programs::sk_lookup::SkLookup::drop(&mut self)
  9444. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_lookup::SkLookup
  9445. pub type &'a aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  9446. pub fn &'a aya::programs::sk_lookup::SkLookup::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  9447. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_lookup::SkLookup
  9448. pub type &'a mut aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  9449. pub fn &'a mut aya::programs::sk_lookup::SkLookup::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  9450. impl core::marker::Freeze for aya::programs::sk_lookup::SkLookup
  9451. impl core::marker::Send for aya::programs::sk_lookup::SkLookup
  9452. impl core::marker::Sync for aya::programs::sk_lookup::SkLookup
  9453. impl core::marker::Unpin for aya::programs::sk_lookup::SkLookup
  9454. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_lookup::SkLookup
  9455. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_lookup::SkLookup
  9456. impl<T, U> core::convert::Into<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::From<T>
  9457. pub fn aya::programs::sk_lookup::SkLookup::into(self) -> U
  9458. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::Into<T>
  9459. pub type aya::programs::sk_lookup::SkLookup::Error = core::convert::Infallible
  9460. pub fn aya::programs::sk_lookup::SkLookup::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9461. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::TryFrom<T>
  9462. pub type aya::programs::sk_lookup::SkLookup::Error = <U as core::convert::TryFrom<T>>::Error
  9463. pub fn aya::programs::sk_lookup::SkLookup::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9464. impl<T> core::any::Any for aya::programs::sk_lookup::SkLookup where T: 'static + ?core::marker::Sized
  9465. pub fn aya::programs::sk_lookup::SkLookup::type_id(&self) -> core::any::TypeId
  9466. impl<T> core::borrow::Borrow<T> for aya::programs::sk_lookup::SkLookup where T: ?core::marker::Sized
  9467. pub fn aya::programs::sk_lookup::SkLookup::borrow(&self) -> &T
  9468. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_lookup::SkLookup where T: ?core::marker::Sized
  9469. pub fn aya::programs::sk_lookup::SkLookup::borrow_mut(&mut self) -> &mut T
  9470. impl<T> core::convert::From<T> for aya::programs::sk_lookup::SkLookup
  9471. pub fn aya::programs::sk_lookup::SkLookup::from(t: T) -> T
  9472. pub struct aya::programs::SkMsg
  9473. impl aya::programs::sk_msg::SkMsg
  9474. pub const aya::programs::sk_msg::SkMsg::PROGRAM_TYPE: aya::programs::ProgramType
  9475. pub fn aya::programs::sk_msg::SkMsg::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<aya::programs::sk_msg::SkMsgLinkId, aya::programs::ProgramError>
  9476. pub fn aya::programs::sk_msg::SkMsg::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9477. impl aya::programs::sk_msg::SkMsg
  9478. pub fn aya::programs::sk_msg::SkMsg::detach(&mut self, link_id: aya::programs::sk_msg::SkMsgLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9479. pub fn aya::programs::sk_msg::SkMsg::take_link(&mut self, link_id: aya::programs::sk_msg::SkMsgLinkId) -> core::result::Result<aya::programs::sk_msg::SkMsgLink, aya::programs::ProgramError>
  9480. impl aya::programs::sk_msg::SkMsg
  9481. pub fn aya::programs::sk_msg::SkMsg::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9482. impl aya::programs::sk_msg::SkMsg
  9483. pub fn aya::programs::sk_msg::SkMsg::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9484. impl aya::programs::sk_msg::SkMsg
  9485. pub fn aya::programs::sk_msg::SkMsg::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9486. impl aya::programs::sk_msg::SkMsg
  9487. pub fn aya::programs::sk_msg::SkMsg::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9488. impl aya::programs::sk_msg::SkMsg
  9489. pub fn aya::programs::sk_msg::SkMsg::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9490. pub fn aya::programs::sk_msg::SkMsg::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9491. impl aya::programs::sk_msg::SkMsg
  9492. pub fn aya::programs::sk_msg::SkMsg::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9493. impl core::fmt::Debug for aya::programs::sk_msg::SkMsg
  9494. pub fn aya::programs::sk_msg::SkMsg::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9495. impl core::ops::drop::Drop for aya::programs::sk_msg::SkMsg
  9496. pub fn aya::programs::sk_msg::SkMsg::drop(&mut self)
  9497. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_msg::SkMsg
  9498. pub type &'a aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  9499. pub fn &'a aya::programs::sk_msg::SkMsg::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  9500. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_msg::SkMsg
  9501. pub type &'a mut aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  9502. pub fn &'a mut aya::programs::sk_msg::SkMsg::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  9503. impl core::marker::Freeze for aya::programs::sk_msg::SkMsg
  9504. impl core::marker::Send for aya::programs::sk_msg::SkMsg
  9505. impl core::marker::Sync for aya::programs::sk_msg::SkMsg
  9506. impl core::marker::Unpin for aya::programs::sk_msg::SkMsg
  9507. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_msg::SkMsg
  9508. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_msg::SkMsg
  9509. impl<T, U> core::convert::Into<U> for aya::programs::sk_msg::SkMsg where U: core::convert::From<T>
  9510. pub fn aya::programs::sk_msg::SkMsg::into(self) -> U
  9511. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_msg::SkMsg where U: core::convert::Into<T>
  9512. pub type aya::programs::sk_msg::SkMsg::Error = core::convert::Infallible
  9513. pub fn aya::programs::sk_msg::SkMsg::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9514. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_msg::SkMsg where U: core::convert::TryFrom<T>
  9515. pub type aya::programs::sk_msg::SkMsg::Error = <U as core::convert::TryFrom<T>>::Error
  9516. pub fn aya::programs::sk_msg::SkMsg::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9517. impl<T> core::any::Any for aya::programs::sk_msg::SkMsg where T: 'static + ?core::marker::Sized
  9518. pub fn aya::programs::sk_msg::SkMsg::type_id(&self) -> core::any::TypeId
  9519. impl<T> core::borrow::Borrow<T> for aya::programs::sk_msg::SkMsg where T: ?core::marker::Sized
  9520. pub fn aya::programs::sk_msg::SkMsg::borrow(&self) -> &T
  9521. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_msg::SkMsg where T: ?core::marker::Sized
  9522. pub fn aya::programs::sk_msg::SkMsg::borrow_mut(&mut self) -> &mut T
  9523. impl<T> core::convert::From<T> for aya::programs::sk_msg::SkMsg
  9524. pub fn aya::programs::sk_msg::SkMsg::from(t: T) -> T
  9525. pub struct aya::programs::SkSkb
  9526. impl aya::programs::sk_skb::SkSkb
  9527. pub const aya::programs::sk_skb::SkSkb::PROGRAM_TYPE: aya::programs::ProgramType
  9528. pub fn aya::programs::sk_skb::SkSkb::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<aya::programs::sk_skb::SkSkbLinkId, aya::programs::ProgramError>
  9529. pub fn aya::programs::sk_skb::SkSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::sk_skb::SkSkbKind) -> core::result::Result<Self, aya::programs::ProgramError>
  9530. pub fn aya::programs::sk_skb::SkSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9531. impl aya::programs::sk_skb::SkSkb
  9532. pub fn aya::programs::sk_skb::SkSkb::detach(&mut self, link_id: aya::programs::sk_skb::SkSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9533. pub fn aya::programs::sk_skb::SkSkb::take_link(&mut self, link_id: aya::programs::sk_skb::SkSkbLinkId) -> core::result::Result<aya::programs::sk_skb::SkSkbLink, aya::programs::ProgramError>
  9534. impl aya::programs::sk_skb::SkSkb
  9535. pub fn aya::programs::sk_skb::SkSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9536. impl aya::programs::sk_skb::SkSkb
  9537. pub fn aya::programs::sk_skb::SkSkb::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::sk_skb::SkSkbKind) -> core::result::Result<Self, aya::programs::ProgramError>
  9538. impl aya::programs::sk_skb::SkSkb
  9539. pub fn aya::programs::sk_skb::SkSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9540. impl aya::programs::sk_skb::SkSkb
  9541. pub fn aya::programs::sk_skb::SkSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9542. pub fn aya::programs::sk_skb::SkSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9543. impl aya::programs::sk_skb::SkSkb
  9544. pub fn aya::programs::sk_skb::SkSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9545. impl core::fmt::Debug for aya::programs::sk_skb::SkSkb
  9546. pub fn aya::programs::sk_skb::SkSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9547. impl core::ops::drop::Drop for aya::programs::sk_skb::SkSkb
  9548. pub fn aya::programs::sk_skb::SkSkb::drop(&mut self)
  9549. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_skb::SkSkb
  9550. pub type &'a aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  9551. pub fn &'a aya::programs::sk_skb::SkSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  9552. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_skb::SkSkb
  9553. pub type &'a mut aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  9554. pub fn &'a mut aya::programs::sk_skb::SkSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  9555. impl core::marker::Freeze for aya::programs::sk_skb::SkSkb
  9556. impl core::marker::Send for aya::programs::sk_skb::SkSkb
  9557. impl core::marker::Sync for aya::programs::sk_skb::SkSkb
  9558. impl core::marker::Unpin for aya::programs::sk_skb::SkSkb
  9559. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkb
  9560. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkb
  9561. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkb where U: core::convert::From<T>
  9562. pub fn aya::programs::sk_skb::SkSkb::into(self) -> U
  9563. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkb where U: core::convert::Into<T>
  9564. pub type aya::programs::sk_skb::SkSkb::Error = core::convert::Infallible
  9565. pub fn aya::programs::sk_skb::SkSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9566. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkb where U: core::convert::TryFrom<T>
  9567. pub type aya::programs::sk_skb::SkSkb::Error = <U as core::convert::TryFrom<T>>::Error
  9568. pub fn aya::programs::sk_skb::SkSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9569. impl<T> core::any::Any for aya::programs::sk_skb::SkSkb where T: 'static + ?core::marker::Sized
  9570. pub fn aya::programs::sk_skb::SkSkb::type_id(&self) -> core::any::TypeId
  9571. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkb where T: ?core::marker::Sized
  9572. pub fn aya::programs::sk_skb::SkSkb::borrow(&self) -> &T
  9573. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkb where T: ?core::marker::Sized
  9574. pub fn aya::programs::sk_skb::SkSkb::borrow_mut(&mut self) -> &mut T
  9575. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkb
  9576. pub fn aya::programs::sk_skb::SkSkb::from(t: T) -> T
  9577. pub struct aya::programs::SockOps
  9578. impl aya::programs::sock_ops::SockOps
  9579. pub const aya::programs::sock_ops::SockOps::PROGRAM_TYPE: aya::programs::ProgramType
  9580. pub fn aya::programs::sock_ops::SockOps::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::sock_ops::SockOpsLinkId, aya::programs::ProgramError>
  9581. pub fn aya::programs::sock_ops::SockOps::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9582. impl aya::programs::sock_ops::SockOps
  9583. pub fn aya::programs::sock_ops::SockOps::detach(&mut self, link_id: aya::programs::sock_ops::SockOpsLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9584. pub fn aya::programs::sock_ops::SockOps::take_link(&mut self, link_id: aya::programs::sock_ops::SockOpsLinkId) -> core::result::Result<aya::programs::sock_ops::SockOpsLink, aya::programs::ProgramError>
  9585. impl aya::programs::sock_ops::SockOps
  9586. pub fn aya::programs::sock_ops::SockOps::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9587. impl aya::programs::sock_ops::SockOps
  9588. pub fn aya::programs::sock_ops::SockOps::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9589. impl aya::programs::sock_ops::SockOps
  9590. pub fn aya::programs::sock_ops::SockOps::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9591. impl aya::programs::sock_ops::SockOps
  9592. pub fn aya::programs::sock_ops::SockOps::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9593. impl aya::programs::sock_ops::SockOps
  9594. pub fn aya::programs::sock_ops::SockOps::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9595. pub fn aya::programs::sock_ops::SockOps::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9596. impl aya::programs::sock_ops::SockOps
  9597. pub fn aya::programs::sock_ops::SockOps::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9598. impl core::fmt::Debug for aya::programs::sock_ops::SockOps
  9599. pub fn aya::programs::sock_ops::SockOps::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9600. impl core::ops::drop::Drop for aya::programs::sock_ops::SockOps
  9601. pub fn aya::programs::sock_ops::SockOps::drop(&mut self)
  9602. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sock_ops::SockOps
  9603. pub type &'a aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  9604. pub fn &'a aya::programs::sock_ops::SockOps::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  9605. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sock_ops::SockOps
  9606. pub type &'a mut aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  9607. pub fn &'a mut aya::programs::sock_ops::SockOps::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  9608. impl core::marker::Freeze for aya::programs::sock_ops::SockOps
  9609. impl core::marker::Send for aya::programs::sock_ops::SockOps
  9610. impl core::marker::Sync for aya::programs::sock_ops::SockOps
  9611. impl core::marker::Unpin for aya::programs::sock_ops::SockOps
  9612. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sock_ops::SockOps
  9613. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sock_ops::SockOps
  9614. impl<T, U> core::convert::Into<U> for aya::programs::sock_ops::SockOps where U: core::convert::From<T>
  9615. pub fn aya::programs::sock_ops::SockOps::into(self) -> U
  9616. impl<T, U> core::convert::TryFrom<U> for aya::programs::sock_ops::SockOps where U: core::convert::Into<T>
  9617. pub type aya::programs::sock_ops::SockOps::Error = core::convert::Infallible
  9618. pub fn aya::programs::sock_ops::SockOps::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9619. impl<T, U> core::convert::TryInto<U> for aya::programs::sock_ops::SockOps where U: core::convert::TryFrom<T>
  9620. pub type aya::programs::sock_ops::SockOps::Error = <U as core::convert::TryFrom<T>>::Error
  9621. pub fn aya::programs::sock_ops::SockOps::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9622. impl<T> core::any::Any for aya::programs::sock_ops::SockOps where T: 'static + ?core::marker::Sized
  9623. pub fn aya::programs::sock_ops::SockOps::type_id(&self) -> core::any::TypeId
  9624. impl<T> core::borrow::Borrow<T> for aya::programs::sock_ops::SockOps where T: ?core::marker::Sized
  9625. pub fn aya::programs::sock_ops::SockOps::borrow(&self) -> &T
  9626. impl<T> core::borrow::BorrowMut<T> for aya::programs::sock_ops::SockOps where T: ?core::marker::Sized
  9627. pub fn aya::programs::sock_ops::SockOps::borrow_mut(&mut self) -> &mut T
  9628. impl<T> core::convert::From<T> for aya::programs::sock_ops::SockOps
  9629. pub fn aya::programs::sock_ops::SockOps::from(t: T) -> T
  9630. pub struct aya::programs::SocketFilter
  9631. impl aya::programs::socket_filter::SocketFilter
  9632. pub const aya::programs::socket_filter::SocketFilter::PROGRAM_TYPE: aya::programs::ProgramType
  9633. pub fn aya::programs::socket_filter::SocketFilter::attach<T: std::os::fd::owned::AsFd>(&mut self, socket: T) -> core::result::Result<aya::programs::socket_filter::SocketFilterLinkId, aya::programs::ProgramError>
  9634. pub fn aya::programs::socket_filter::SocketFilter::detach(&mut self, link_id: aya::programs::socket_filter::SocketFilterLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9635. pub fn aya::programs::socket_filter::SocketFilter::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9636. pub fn aya::programs::socket_filter::SocketFilter::take_link(&mut self, link_id: aya::programs::socket_filter::SocketFilterLinkId) -> core::result::Result<aya::programs::socket_filter::SocketFilterLink, aya::programs::ProgramError>
  9637. impl aya::programs::socket_filter::SocketFilter
  9638. pub fn aya::programs::socket_filter::SocketFilter::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9639. impl aya::programs::socket_filter::SocketFilter
  9640. pub fn aya::programs::socket_filter::SocketFilter::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9641. impl aya::programs::socket_filter::SocketFilter
  9642. pub fn aya::programs::socket_filter::SocketFilter::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9643. impl aya::programs::socket_filter::SocketFilter
  9644. pub fn aya::programs::socket_filter::SocketFilter::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9645. pub fn aya::programs::socket_filter::SocketFilter::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9646. impl aya::programs::socket_filter::SocketFilter
  9647. pub fn aya::programs::socket_filter::SocketFilter::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9648. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilter
  9649. pub fn aya::programs::socket_filter::SocketFilter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9650. impl core::ops::drop::Drop for aya::programs::socket_filter::SocketFilter
  9651. pub fn aya::programs::socket_filter::SocketFilter::drop(&mut self)
  9652. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::socket_filter::SocketFilter
  9653. pub type &'a aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  9654. pub fn &'a aya::programs::socket_filter::SocketFilter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  9655. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::socket_filter::SocketFilter
  9656. pub type &'a mut aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  9657. pub fn &'a mut aya::programs::socket_filter::SocketFilter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  9658. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilter
  9659. impl core::marker::Send for aya::programs::socket_filter::SocketFilter
  9660. impl core::marker::Sync for aya::programs::socket_filter::SocketFilter
  9661. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilter
  9662. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilter
  9663. impl core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilter
  9664. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::From<T>
  9665. pub fn aya::programs::socket_filter::SocketFilter::into(self) -> U
  9666. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::Into<T>
  9667. pub type aya::programs::socket_filter::SocketFilter::Error = core::convert::Infallible
  9668. pub fn aya::programs::socket_filter::SocketFilter::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9669. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::TryFrom<T>
  9670. pub type aya::programs::socket_filter::SocketFilter::Error = <U as core::convert::TryFrom<T>>::Error
  9671. pub fn aya::programs::socket_filter::SocketFilter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9672. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilter where T: 'static + ?core::marker::Sized
  9673. pub fn aya::programs::socket_filter::SocketFilter::type_id(&self) -> core::any::TypeId
  9674. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilter where T: ?core::marker::Sized
  9675. pub fn aya::programs::socket_filter::SocketFilter::borrow(&self) -> &T
  9676. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilter where T: ?core::marker::Sized
  9677. pub fn aya::programs::socket_filter::SocketFilter::borrow_mut(&mut self) -> &mut T
  9678. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilter
  9679. pub fn aya::programs::socket_filter::SocketFilter::from(t: T) -> T
  9680. pub struct aya::programs::TracePoint
  9681. impl aya::programs::trace_point::TracePoint
  9682. pub const aya::programs::trace_point::TracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  9683. pub fn aya::programs::trace_point::TracePoint::attach(&mut self, category: &str, name: &str) -> core::result::Result<aya::programs::trace_point::TracePointLinkId, aya::programs::ProgramError>
  9684. pub fn aya::programs::trace_point::TracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9685. impl aya::programs::trace_point::TracePoint
  9686. pub fn aya::programs::trace_point::TracePoint::detach(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9687. pub fn aya::programs::trace_point::TracePoint::take_link(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<aya::programs::trace_point::TracePointLink, aya::programs::ProgramError>
  9688. impl aya::programs::trace_point::TracePoint
  9689. pub fn aya::programs::trace_point::TracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9690. impl aya::programs::trace_point::TracePoint
  9691. pub fn aya::programs::trace_point::TracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9692. impl aya::programs::trace_point::TracePoint
  9693. pub fn aya::programs::trace_point::TracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9694. impl aya::programs::trace_point::TracePoint
  9695. pub fn aya::programs::trace_point::TracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9696. impl aya::programs::trace_point::TracePoint
  9697. pub fn aya::programs::trace_point::TracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9698. pub fn aya::programs::trace_point::TracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9699. impl aya::programs::trace_point::TracePoint
  9700. pub fn aya::programs::trace_point::TracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9701. impl core::fmt::Debug for aya::programs::trace_point::TracePoint
  9702. pub fn aya::programs::trace_point::TracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9703. impl core::ops::drop::Drop for aya::programs::trace_point::TracePoint
  9704. pub fn aya::programs::trace_point::TracePoint::drop(&mut self)
  9705. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint
  9706. pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  9707. pub fn &'a aya::programs::trace_point::TracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  9708. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint
  9709. pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  9710. pub fn &'a mut aya::programs::trace_point::TracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  9711. impl core::marker::Freeze for aya::programs::trace_point::TracePoint
  9712. impl core::marker::Send for aya::programs::trace_point::TracePoint
  9713. impl core::marker::Sync for aya::programs::trace_point::TracePoint
  9714. impl core::marker::Unpin for aya::programs::trace_point::TracePoint
  9715. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePoint
  9716. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePoint
  9717. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePoint where U: core::convert::From<T>
  9718. pub fn aya::programs::trace_point::TracePoint::into(self) -> U
  9719. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePoint where U: core::convert::Into<T>
  9720. pub type aya::programs::trace_point::TracePoint::Error = core::convert::Infallible
  9721. pub fn aya::programs::trace_point::TracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9722. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePoint where U: core::convert::TryFrom<T>
  9723. pub type aya::programs::trace_point::TracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  9724. pub fn aya::programs::trace_point::TracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9725. impl<T> core::any::Any for aya::programs::trace_point::TracePoint where T: 'static + ?core::marker::Sized
  9726. pub fn aya::programs::trace_point::TracePoint::type_id(&self) -> core::any::TypeId
  9727. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePoint where T: ?core::marker::Sized
  9728. pub fn aya::programs::trace_point::TracePoint::borrow(&self) -> &T
  9729. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePoint where T: ?core::marker::Sized
  9730. pub fn aya::programs::trace_point::TracePoint::borrow_mut(&mut self) -> &mut T
  9731. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePoint
  9732. pub fn aya::programs::trace_point::TracePoint::from(t: T) -> T
  9733. pub struct aya::programs::UProbe
  9734. impl aya::programs::uprobe::UProbe
  9735. pub const aya::programs::uprobe::UProbe::PROGRAM_TYPE: aya::programs::ProgramType
  9736. pub fn aya::programs::uprobe::UProbe::attach<'loc, T: core::convert::AsRef<std::path::Path>, Loc: core::convert::Into<aya::programs::uprobe::UProbeAttachLocation<'loc>>>(&mut self, location: Loc, target: T, pid: core::option::Option<libc::unix::pid_t>, cookie: core::option::Option<u64>) -> core::result::Result<aya::programs::uprobe::UProbeLinkId, aya::programs::ProgramError>
  9737. pub fn aya::programs::uprobe::UProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  9738. pub fn aya::programs::uprobe::UProbe::kind(&self) -> aya::programs::ProbeKind
  9739. pub fn aya::programs::uprobe::UProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9740. impl aya::programs::uprobe::UProbe
  9741. pub fn aya::programs::uprobe::UProbe::detach(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9742. pub fn aya::programs::uprobe::UProbe::take_link(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<aya::programs::uprobe::UProbeLink, aya::programs::ProgramError>
  9743. impl aya::programs::uprobe::UProbe
  9744. pub fn aya::programs::uprobe::UProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9745. impl aya::programs::uprobe::UProbe
  9746. pub unsafe fn aya::programs::uprobe::UProbe::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  9747. impl aya::programs::uprobe::UProbe
  9748. pub fn aya::programs::uprobe::UProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9749. impl aya::programs::uprobe::UProbe
  9750. pub fn aya::programs::uprobe::UProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9751. pub fn aya::programs::uprobe::UProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9752. impl aya::programs::uprobe::UProbe
  9753. pub fn aya::programs::uprobe::UProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9754. impl core::fmt::Debug for aya::programs::uprobe::UProbe
  9755. pub fn aya::programs::uprobe::UProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9756. impl core::ops::drop::Drop for aya::programs::uprobe::UProbe
  9757. pub fn aya::programs::uprobe::UProbe::drop(&mut self)
  9758. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe
  9759. pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  9760. pub fn &'a aya::programs::uprobe::UProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  9761. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe
  9762. pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  9763. pub fn &'a mut aya::programs::uprobe::UProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  9764. impl core::marker::Freeze for aya::programs::uprobe::UProbe
  9765. impl core::marker::Send for aya::programs::uprobe::UProbe
  9766. impl core::marker::Sync for aya::programs::uprobe::UProbe
  9767. impl core::marker::Unpin for aya::programs::uprobe::UProbe
  9768. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbe
  9769. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbe
  9770. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbe where U: core::convert::From<T>
  9771. pub fn aya::programs::uprobe::UProbe::into(self) -> U
  9772. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbe where U: core::convert::Into<T>
  9773. pub type aya::programs::uprobe::UProbe::Error = core::convert::Infallible
  9774. pub fn aya::programs::uprobe::UProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9775. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbe where U: core::convert::TryFrom<T>
  9776. pub type aya::programs::uprobe::UProbe::Error = <U as core::convert::TryFrom<T>>::Error
  9777. pub fn aya::programs::uprobe::UProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9778. impl<T> core::any::Any for aya::programs::uprobe::UProbe where T: 'static + ?core::marker::Sized
  9779. pub fn aya::programs::uprobe::UProbe::type_id(&self) -> core::any::TypeId
  9780. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbe where T: ?core::marker::Sized
  9781. pub fn aya::programs::uprobe::UProbe::borrow(&self) -> &T
  9782. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbe where T: ?core::marker::Sized
  9783. pub fn aya::programs::uprobe::UProbe::borrow_mut(&mut self) -> &mut T
  9784. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbe
  9785. pub fn aya::programs::uprobe::UProbe::from(t: T) -> T
  9786. pub struct aya::programs::Xdp
  9787. impl aya::programs::xdp::Xdp
  9788. pub const aya::programs::xdp::Xdp::PROGRAM_TYPE: aya::programs::ProgramType
  9789. pub fn aya::programs::xdp::Xdp::attach(&mut self, interface: &str, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  9790. pub fn aya::programs::xdp::Xdp::attach_to_if_index(&mut self, if_index: u32, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  9791. pub fn aya::programs::xdp::Xdp::attach_to_link(&mut self, link: aya::programs::xdp::XdpLink) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  9792. pub fn aya::programs::xdp::Xdp::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::xdp::XdpAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  9793. pub fn aya::programs::xdp::Xdp::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9794. impl aya::programs::xdp::Xdp
  9795. pub fn aya::programs::xdp::Xdp::detach(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9796. pub fn aya::programs::xdp::Xdp::take_link(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<aya::programs::xdp::XdpLink, aya::programs::ProgramError>
  9797. impl aya::programs::xdp::Xdp
  9798. pub fn aya::programs::xdp::Xdp::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9799. impl aya::programs::xdp::Xdp
  9800. pub fn aya::programs::xdp::Xdp::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: aya_obj::programs::xdp::XdpAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  9801. impl aya::programs::xdp::Xdp
  9802. pub fn aya::programs::xdp::Xdp::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9803. impl aya::programs::xdp::Xdp
  9804. pub fn aya::programs::xdp::Xdp::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9805. pub fn aya::programs::xdp::Xdp::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9806. impl aya::programs::xdp::Xdp
  9807. pub fn aya::programs::xdp::Xdp::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9808. impl core::fmt::Debug for aya::programs::xdp::Xdp
  9809. pub fn aya::programs::xdp::Xdp::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9810. impl core::ops::drop::Drop for aya::programs::xdp::Xdp
  9811. pub fn aya::programs::xdp::Xdp::drop(&mut self)
  9812. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp
  9813. pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  9814. pub fn &'a aya::programs::xdp::Xdp::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::xdp::Xdp, aya::programs::ProgramError>
  9815. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp
  9816. pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  9817. pub fn &'a mut aya::programs::xdp::Xdp::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::xdp::Xdp, aya::programs::ProgramError>
  9818. impl core::marker::Freeze for aya::programs::xdp::Xdp
  9819. impl core::marker::Send for aya::programs::xdp::Xdp
  9820. impl core::marker::Sync for aya::programs::xdp::Xdp
  9821. impl core::marker::Unpin for aya::programs::xdp::Xdp
  9822. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::Xdp
  9823. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::Xdp
  9824. impl<T, U> core::convert::Into<U> for aya::programs::xdp::Xdp where U: core::convert::From<T>
  9825. pub fn aya::programs::xdp::Xdp::into(self) -> U
  9826. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::Xdp where U: core::convert::Into<T>
  9827. pub type aya::programs::xdp::Xdp::Error = core::convert::Infallible
  9828. pub fn aya::programs::xdp::Xdp::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9829. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::Xdp where U: core::convert::TryFrom<T>
  9830. pub type aya::programs::xdp::Xdp::Error = <U as core::convert::TryFrom<T>>::Error
  9831. pub fn aya::programs::xdp::Xdp::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9832. impl<T> core::any::Any for aya::programs::xdp::Xdp where T: 'static + ?core::marker::Sized
  9833. pub fn aya::programs::xdp::Xdp::type_id(&self) -> core::any::TypeId
  9834. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::Xdp where T: ?core::marker::Sized
  9835. pub fn aya::programs::xdp::Xdp::borrow(&self) -> &T
  9836. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::Xdp where T: ?core::marker::Sized
  9837. pub fn aya::programs::xdp::Xdp::borrow_mut(&mut self) -> &mut T
  9838. impl<T> core::convert::From<T> for aya::programs::xdp::Xdp
  9839. pub fn aya::programs::xdp::Xdp::from(t: T) -> T
  9840. pub struct aya::programs::XdpFlags(_)
  9841. impl aya::programs::xdp::XdpFlags
  9842. pub const aya::programs::xdp::XdpFlags::DRV_MODE: Self
  9843. pub const aya::programs::xdp::XdpFlags::HW_MODE: Self
  9844. pub const aya::programs::xdp::XdpFlags::REPLACE: Self
  9845. pub const aya::programs::xdp::XdpFlags::SKB_MODE: Self
  9846. pub const aya::programs::xdp::XdpFlags::UPDATE_IF_NOEXIST: Self
  9847. impl aya::programs::xdp::XdpFlags
  9848. pub const fn aya::programs::xdp::XdpFlags::all() -> Self
  9849. pub const fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  9850. pub const fn aya::programs::xdp::XdpFlags::complement(self) -> Self
  9851. pub const fn aya::programs::xdp::XdpFlags::contains(&self, other: Self) -> bool
  9852. pub const fn aya::programs::xdp::XdpFlags::difference(self, other: Self) -> Self
  9853. pub const fn aya::programs::xdp::XdpFlags::empty() -> Self
  9854. pub const fn aya::programs::xdp::XdpFlags::from_bits(bits: u32) -> core::option::Option<Self>
  9855. pub const fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> Self
  9856. pub const fn aya::programs::xdp::XdpFlags::from_bits_truncate(bits: u32) -> Self
  9857. pub fn aya::programs::xdp::XdpFlags::from_name(name: &str) -> core::option::Option<Self>
  9858. pub fn aya::programs::xdp::XdpFlags::insert(&mut self, other: Self)
  9859. pub const fn aya::programs::xdp::XdpFlags::intersection(self, other: Self) -> Self
  9860. pub const fn aya::programs::xdp::XdpFlags::intersects(&self, other: Self) -> bool
  9861. pub const fn aya::programs::xdp::XdpFlags::is_all(&self) -> bool
  9862. pub const fn aya::programs::xdp::XdpFlags::is_empty(&self) -> bool
  9863. pub fn aya::programs::xdp::XdpFlags::remove(&mut self, other: Self)
  9864. pub fn aya::programs::xdp::XdpFlags::set(&mut self, other: Self, value: bool)
  9865. pub const fn aya::programs::xdp::XdpFlags::symmetric_difference(self, other: Self) -> Self
  9866. pub fn aya::programs::xdp::XdpFlags::toggle(&mut self, other: Self)
  9867. pub const fn aya::programs::xdp::XdpFlags::union(self, other: Self) -> Self
  9868. impl aya::programs::xdp::XdpFlags
  9869. pub const fn aya::programs::xdp::XdpFlags::iter(&self) -> bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  9870. pub const fn aya::programs::xdp::XdpFlags::iter_names(&self) -> bitflags::iter::IterNames<aya::programs::xdp::XdpFlags>
  9871. impl bitflags::traits::Flags for aya::programs::xdp::XdpFlags
  9872. pub type aya::programs::xdp::XdpFlags::Bits = u32
  9873. pub const aya::programs::xdp::XdpFlags::FLAGS: &'static [bitflags::traits::Flag<aya::programs::xdp::XdpFlags>]
  9874. pub fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  9875. pub fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> aya::programs::xdp::XdpFlags
  9876. impl bitflags::traits::PublicFlags for aya::programs::xdp::XdpFlags
  9877. pub type aya::programs::xdp::XdpFlags::Internal = InternalBitFlags
  9878. pub type aya::programs::xdp::XdpFlags::Primitive = u32
  9879. impl core::clone::Clone for aya::programs::xdp::XdpFlags
  9880. pub fn aya::programs::xdp::XdpFlags::clone(&self) -> aya::programs::xdp::XdpFlags
  9881. impl core::default::Default for aya::programs::xdp::XdpFlags
  9882. pub fn aya::programs::xdp::XdpFlags::default() -> aya::programs::xdp::XdpFlags
  9883. impl core::fmt::Binary for aya::programs::xdp::XdpFlags
  9884. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9885. impl core::fmt::Debug for aya::programs::xdp::XdpFlags
  9886. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9887. impl core::fmt::LowerHex for aya::programs::xdp::XdpFlags
  9888. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9889. impl core::fmt::Octal for aya::programs::xdp::XdpFlags
  9890. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9891. impl core::fmt::UpperHex for aya::programs::xdp::XdpFlags
  9892. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9893. impl core::iter::traits::collect::Extend<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  9894. pub fn aya::programs::xdp::XdpFlags::extend<T: core::iter::traits::collect::IntoIterator<Item = Self>>(&mut self, iterator: T)
  9895. impl core::iter::traits::collect::FromIterator<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  9896. pub fn aya::programs::xdp::XdpFlags::from_iter<T: core::iter::traits::collect::IntoIterator<Item = Self>>(iterator: T) -> Self
  9897. impl core::iter::traits::collect::IntoIterator for aya::programs::xdp::XdpFlags
  9898. pub type aya::programs::xdp::XdpFlags::IntoIter = bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  9899. pub type aya::programs::xdp::XdpFlags::Item = aya::programs::xdp::XdpFlags
  9900. pub fn aya::programs::xdp::XdpFlags::into_iter(self) -> Self::IntoIter
  9901. impl core::marker::Copy for aya::programs::xdp::XdpFlags
  9902. impl core::ops::arith::Sub for aya::programs::xdp::XdpFlags
  9903. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9904. pub fn aya::programs::xdp::XdpFlags::sub(self, other: Self) -> Self
  9905. impl core::ops::arith::SubAssign for aya::programs::xdp::XdpFlags
  9906. pub fn aya::programs::xdp::XdpFlags::sub_assign(&mut self, other: Self)
  9907. impl core::ops::bit::BitAnd for aya::programs::xdp::XdpFlags
  9908. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9909. pub fn aya::programs::xdp::XdpFlags::bitand(self, other: Self) -> Self
  9910. impl core::ops::bit::BitAndAssign for aya::programs::xdp::XdpFlags
  9911. pub fn aya::programs::xdp::XdpFlags::bitand_assign(&mut self, other: Self)
  9912. impl core::ops::bit::BitOr for aya::programs::xdp::XdpFlags
  9913. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9914. pub fn aya::programs::xdp::XdpFlags::bitor(self, other: aya::programs::xdp::XdpFlags) -> Self
  9915. impl core::ops::bit::BitOrAssign for aya::programs::xdp::XdpFlags
  9916. pub fn aya::programs::xdp::XdpFlags::bitor_assign(&mut self, other: Self)
  9917. impl core::ops::bit::BitXor for aya::programs::xdp::XdpFlags
  9918. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9919. pub fn aya::programs::xdp::XdpFlags::bitxor(self, other: Self) -> Self
  9920. impl core::ops::bit::BitXorAssign for aya::programs::xdp::XdpFlags
  9921. pub fn aya::programs::xdp::XdpFlags::bitxor_assign(&mut self, other: Self)
  9922. impl core::ops::bit::Not for aya::programs::xdp::XdpFlags
  9923. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9924. pub fn aya::programs::xdp::XdpFlags::not(self) -> Self
  9925. impl core::marker::Freeze for aya::programs::xdp::XdpFlags
  9926. impl core::marker::Send for aya::programs::xdp::XdpFlags
  9927. impl core::marker::Sync for aya::programs::xdp::XdpFlags
  9928. impl core::marker::Unpin for aya::programs::xdp::XdpFlags
  9929. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpFlags
  9930. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpFlags
  9931. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpFlags where U: core::convert::From<T>
  9932. pub fn aya::programs::xdp::XdpFlags::into(self) -> U
  9933. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpFlags where U: core::convert::Into<T>
  9934. pub type aya::programs::xdp::XdpFlags::Error = core::convert::Infallible
  9935. pub fn aya::programs::xdp::XdpFlags::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9936. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpFlags where U: core::convert::TryFrom<T>
  9937. pub type aya::programs::xdp::XdpFlags::Error = <U as core::convert::TryFrom<T>>::Error
  9938. pub fn aya::programs::xdp::XdpFlags::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9939. impl<T> alloc::borrow::ToOwned for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  9940. pub type aya::programs::xdp::XdpFlags::Owned = T
  9941. pub fn aya::programs::xdp::XdpFlags::clone_into(&self, target: &mut T)
  9942. pub fn aya::programs::xdp::XdpFlags::to_owned(&self) -> T
  9943. impl<T> core::any::Any for aya::programs::xdp::XdpFlags where T: 'static + ?core::marker::Sized
  9944. pub fn aya::programs::xdp::XdpFlags::type_id(&self) -> core::any::TypeId
  9945. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpFlags where T: ?core::marker::Sized
  9946. pub fn aya::programs::xdp::XdpFlags::borrow(&self) -> &T
  9947. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpFlags where T: ?core::marker::Sized
  9948. pub fn aya::programs::xdp::XdpFlags::borrow_mut(&mut self) -> &mut T
  9949. impl<T> core::clone::CloneToUninit for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  9950. pub unsafe fn aya::programs::xdp::XdpFlags::clone_to_uninit(&self, dest: *mut u8)
  9951. impl<T> core::convert::From<T> for aya::programs::xdp::XdpFlags
  9952. pub fn aya::programs::xdp::XdpFlags::from(t: T) -> T
  9953. pub trait aya::programs::Link: core::fmt::Debug + core::cmp::Eq + core::hash::Hash + 'static
  9954. pub type aya::programs::Link::Id: core::fmt::Debug + core::cmp::Eq + core::hash::Hash + equivalent::Equivalent<Self>
  9955. pub fn aya::programs::Link::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9956. pub fn aya::programs::Link::id(&self) -> Self::Id
  9957. impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink
  9958. pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId
  9959. pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9960. pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id
  9961. impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink
  9962. pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId
  9963. pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9964. pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id
  9965. impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink
  9966. pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId
  9967. pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9968. pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id
  9969. impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  9970. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  9971. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9972. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id
  9973. impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink
  9974. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  9975. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9976. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id
  9977. impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink
  9978. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  9979. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9980. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id
  9981. impl aya::programs::links::Link for aya::programs::extension::ExtensionLink
  9982. pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId
  9983. pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9984. pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id
  9985. impl aya::programs::links::Link for aya::programs::fentry::FEntryLink
  9986. pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId
  9987. pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9988. pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id
  9989. impl aya::programs::links::Link for aya::programs::fexit::FExitLink
  9990. pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId
  9991. pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9992. pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id
  9993. impl aya::programs::links::Link for aya::programs::flow_dissector::FlowDissectorLink
  9994. pub type aya::programs::flow_dissector::FlowDissectorLink::Id = aya::programs::flow_dissector::FlowDissectorLinkId
  9995. pub fn aya::programs::flow_dissector::FlowDissectorLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9996. pub fn aya::programs::flow_dissector::FlowDissectorLink::id(&self) -> Self::Id
  9997. impl aya::programs::links::Link for aya::programs::iter::IterLink
  9998. pub type aya::programs::iter::IterLink::Id = aya::programs::iter::IterLinkId
  9999. pub fn aya::programs::iter::IterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10000. pub fn aya::programs::iter::IterLink::id(&self) -> Self::Id
  10001. impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink
  10002. pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId
  10003. pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10004. pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id
  10005. impl aya::programs::links::Link for aya::programs::links::FdLink
  10006. pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId
  10007. pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10008. pub fn aya::programs::links::FdLink::id(&self) -> Self::Id
  10009. impl aya::programs::links::Link for aya::programs::links::ProgAttachLink
  10010. pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId
  10011. pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10012. pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id
  10013. impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink
  10014. pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId
  10015. pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10016. pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id
  10017. impl aya::programs::links::Link for aya::programs::lsm::LsmLink
  10018. pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId
  10019. pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10020. pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id
  10021. impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink
  10022. pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId
  10023. pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10024. pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id
  10025. impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink
  10026. pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId
  10027. pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10028. pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id
  10029. impl aya::programs::links::Link for aya::programs::raw_trace_point::RawTracePointLink
  10030. pub type aya::programs::raw_trace_point::RawTracePointLink::Id = aya::programs::raw_trace_point::RawTracePointLinkId
  10031. pub fn aya::programs::raw_trace_point::RawTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10032. pub fn aya::programs::raw_trace_point::RawTracePointLink::id(&self) -> Self::Id
  10033. impl aya::programs::links::Link for aya::programs::sk_lookup::SkLookupLink
  10034. pub type aya::programs::sk_lookup::SkLookupLink::Id = aya::programs::sk_lookup::SkLookupLinkId
  10035. pub fn aya::programs::sk_lookup::SkLookupLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10036. pub fn aya::programs::sk_lookup::SkLookupLink::id(&self) -> Self::Id
  10037. impl aya::programs::links::Link for aya::programs::sk_msg::SkMsgLink
  10038. pub type aya::programs::sk_msg::SkMsgLink::Id = aya::programs::sk_msg::SkMsgLinkId
  10039. pub fn aya::programs::sk_msg::SkMsgLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10040. pub fn aya::programs::sk_msg::SkMsgLink::id(&self) -> Self::Id
  10041. impl aya::programs::links::Link for aya::programs::sk_skb::SkSkbLink
  10042. pub type aya::programs::sk_skb::SkSkbLink::Id = aya::programs::sk_skb::SkSkbLinkId
  10043. pub fn aya::programs::sk_skb::SkSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10044. pub fn aya::programs::sk_skb::SkSkbLink::id(&self) -> Self::Id
  10045. impl aya::programs::links::Link for aya::programs::sock_ops::SockOpsLink
  10046. pub type aya::programs::sock_ops::SockOpsLink::Id = aya::programs::sock_ops::SockOpsLinkId
  10047. pub fn aya::programs::sock_ops::SockOpsLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10048. pub fn aya::programs::sock_ops::SockOpsLink::id(&self) -> Self::Id
  10049. impl aya::programs::links::Link for aya::programs::socket_filter::SocketFilterLink
  10050. pub type aya::programs::socket_filter::SocketFilterLink::Id = aya::programs::socket_filter::SocketFilterLinkId
  10051. pub fn aya::programs::socket_filter::SocketFilterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10052. pub fn aya::programs::socket_filter::SocketFilterLink::id(&self) -> Self::Id
  10053. impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink
  10054. pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId
  10055. pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10056. pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id
  10057. impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink
  10058. pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId
  10059. pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10060. pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id
  10061. impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink
  10062. pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId
  10063. pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10064. pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id
  10065. impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink
  10066. pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId
  10067. pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10068. pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id
  10069. impl aya::programs::links::Link for aya::programs::xdp::XdpLink
  10070. pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId
  10071. pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  10072. pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id
  10073. pub trait aya::programs::MultiProgLink
  10074. pub fn aya::programs::MultiProgLink::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::links::LinkError>
  10075. impl aya::programs::MultiProgLink for aya::programs::tc::SchedClassifierLink
  10076. pub fn aya::programs::tc::SchedClassifierLink::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::links::LinkError>
  10077. pub trait aya::programs::MultiProgram
  10078. pub fn aya::programs::MultiProgram::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::ProgramError>
  10079. impl aya::programs::MultiProgram for aya::programs::tc::SchedClassifier
  10080. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::ProgramError>
  10081. pub fn aya::programs::loaded_links() -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::programs::links::LinkInfo, aya::programs::links::LinkError>>
  10082. pub fn aya::programs::loaded_programs() -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>>
  10083. pub mod aya::sys
  10084. #[non_exhaustive] pub enum aya::sys::Stats
  10085. pub aya::sys::Stats::RunTime
  10086. impl core::clone::Clone for aya::sys::Stats
  10087. pub fn aya::sys::Stats::clone(&self) -> aya::sys::Stats
  10088. impl core::convert::From<aya::sys::Stats> for aya_obj::generated::linux_bindings_x86_64::bpf_stats_type
  10089. pub fn aya_obj::generated::linux_bindings_x86_64::bpf_stats_type::from(value: aya::sys::Stats) -> Self
  10090. impl core::fmt::Debug for aya::sys::Stats
  10091. pub fn aya::sys::Stats::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10092. impl core::marker::Copy for aya::sys::Stats
  10093. impl core::marker::Freeze for aya::sys::Stats
  10094. impl core::marker::Send for aya::sys::Stats
  10095. impl core::marker::Sync for aya::sys::Stats
  10096. impl core::marker::Unpin for aya::sys::Stats
  10097. impl core::panic::unwind_safe::RefUnwindSafe for aya::sys::Stats
  10098. impl core::panic::unwind_safe::UnwindSafe for aya::sys::Stats
  10099. impl<T, U> core::convert::Into<U> for aya::sys::Stats where U: core::convert::From<T>
  10100. pub fn aya::sys::Stats::into(self) -> U
  10101. impl<T, U> core::convert::TryFrom<U> for aya::sys::Stats where U: core::convert::Into<T>
  10102. pub type aya::sys::Stats::Error = core::convert::Infallible
  10103. pub fn aya::sys::Stats::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10104. impl<T, U> core::convert::TryInto<U> for aya::sys::Stats where U: core::convert::TryFrom<T>
  10105. pub type aya::sys::Stats::Error = <U as core::convert::TryFrom<T>>::Error
  10106. pub fn aya::sys::Stats::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10107. impl<T> alloc::borrow::ToOwned for aya::sys::Stats where T: core::clone::Clone
  10108. pub type aya::sys::Stats::Owned = T
  10109. pub fn aya::sys::Stats::clone_into(&self, target: &mut T)
  10110. pub fn aya::sys::Stats::to_owned(&self) -> T
  10111. impl<T> core::any::Any for aya::sys::Stats where T: 'static + ?core::marker::Sized
  10112. pub fn aya::sys::Stats::type_id(&self) -> core::any::TypeId
  10113. impl<T> core::borrow::Borrow<T> for aya::sys::Stats where T: ?core::marker::Sized
  10114. pub fn aya::sys::Stats::borrow(&self) -> &T
  10115. impl<T> core::borrow::BorrowMut<T> for aya::sys::Stats where T: ?core::marker::Sized
  10116. pub fn aya::sys::Stats::borrow_mut(&mut self) -> &mut T
  10117. impl<T> core::clone::CloneToUninit for aya::sys::Stats where T: core::clone::Clone
  10118. pub unsafe fn aya::sys::Stats::clone_to_uninit(&self, dest: *mut u8)
  10119. impl<T> core::convert::From<T> for aya::sys::Stats
  10120. pub fn aya::sys::Stats::from(t: T) -> T
  10121. pub struct aya::sys::SyscallError
  10122. pub aya::sys::SyscallError::call: &'static str
  10123. pub aya::sys::SyscallError::io_error: std::io::error::Error
  10124. impl core::convert::From<aya::sys::SyscallError> for aya::maps::MapError
  10125. pub fn aya::maps::MapError::from(source: aya::sys::SyscallError) -> Self
  10126. impl core::convert::From<aya::sys::SyscallError> for aya::pin::PinError
  10127. pub fn aya::pin::PinError::from(source: aya::sys::SyscallError) -> Self
  10128. impl core::convert::From<aya::sys::SyscallError> for aya::programs::ProgramError
  10129. pub fn aya::programs::ProgramError::from(source: aya::sys::SyscallError) -> Self
  10130. impl core::convert::From<aya::sys::SyscallError> for aya::programs::links::LinkError
  10131. pub fn aya::programs::links::LinkError::from(source: aya::sys::SyscallError) -> Self
  10132. impl core::error::Error for aya::sys::SyscallError
  10133. pub fn aya::sys::SyscallError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  10134. impl core::fmt::Debug for aya::sys::SyscallError
  10135. pub fn aya::sys::SyscallError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10136. impl core::fmt::Display for aya::sys::SyscallError
  10137. pub fn aya::sys::SyscallError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10138. impl core::marker::Freeze for aya::sys::SyscallError
  10139. impl core::marker::Send for aya::sys::SyscallError
  10140. impl core::marker::Sync for aya::sys::SyscallError
  10141. impl core::marker::Unpin for aya::sys::SyscallError
  10142. impl !core::panic::unwind_safe::RefUnwindSafe for aya::sys::SyscallError
  10143. impl !core::panic::unwind_safe::UnwindSafe for aya::sys::SyscallError
  10144. impl<T, U> core::convert::Into<U> for aya::sys::SyscallError where U: core::convert::From<T>
  10145. pub fn aya::sys::SyscallError::into(self) -> U
  10146. impl<T, U> core::convert::TryFrom<U> for aya::sys::SyscallError where U: core::convert::Into<T>
  10147. pub type aya::sys::SyscallError::Error = core::convert::Infallible
  10148. pub fn aya::sys::SyscallError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10149. impl<T, U> core::convert::TryInto<U> for aya::sys::SyscallError where U: core::convert::TryFrom<T>
  10150. pub type aya::sys::SyscallError::Error = <U as core::convert::TryFrom<T>>::Error
  10151. pub fn aya::sys::SyscallError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10152. impl<T> alloc::string::ToString for aya::sys::SyscallError where T: core::fmt::Display + ?core::marker::Sized
  10153. pub fn aya::sys::SyscallError::to_string(&self) -> alloc::string::String
  10154. impl<T> core::any::Any for aya::sys::SyscallError where T: 'static + ?core::marker::Sized
  10155. pub fn aya::sys::SyscallError::type_id(&self) -> core::any::TypeId
  10156. impl<T> core::borrow::Borrow<T> for aya::sys::SyscallError where T: ?core::marker::Sized
  10157. pub fn aya::sys::SyscallError::borrow(&self) -> &T
  10158. impl<T> core::borrow::BorrowMut<T> for aya::sys::SyscallError where T: ?core::marker::Sized
  10159. pub fn aya::sys::SyscallError::borrow_mut(&mut self) -> &mut T
  10160. impl<T> core::convert::From<T> for aya::sys::SyscallError
  10161. pub fn aya::sys::SyscallError::from(t: T) -> T
  10162. pub fn aya::sys::enable_stats(stats_type: aya::sys::Stats) -> core::result::Result<std::os::fd::owned::OwnedFd, aya::sys::SyscallError>
  10163. pub fn aya::sys::is_map_supported(map_type: aya::maps::MapType) -> core::result::Result<bool, aya::sys::SyscallError>
  10164. pub fn aya::sys::is_program_supported(program_type: aya::programs::ProgramType) -> core::result::Result<bool, aya::programs::ProgramError>
  10165. pub mod aya::util
  10166. pub struct aya::util::KernelVersion
  10167. impl aya::util::KernelVersion
  10168. pub fn aya::util::KernelVersion::code(self) -> u32
  10169. pub fn aya::util::KernelVersion::current() -> core::result::Result<Self, impl core::error::Error>
  10170. pub fn aya::util::KernelVersion::new(major: u8, minor: u8, patch: u16) -> Self
  10171. impl core::clone::Clone for aya::util::KernelVersion
  10172. pub fn aya::util::KernelVersion::clone(&self) -> aya::util::KernelVersion
  10173. impl core::cmp::Eq for aya::util::KernelVersion
  10174. impl core::cmp::PartialEq for aya::util::KernelVersion
  10175. pub fn aya::util::KernelVersion::eq(&self, other: &aya::util::KernelVersion) -> bool
  10176. impl core::cmp::PartialOrd for aya::util::KernelVersion
  10177. pub fn aya::util::KernelVersion::partial_cmp(&self, other: &aya::util::KernelVersion) -> core::option::Option<core::cmp::Ordering>
  10178. impl core::fmt::Debug for aya::util::KernelVersion
  10179. pub fn aya::util::KernelVersion::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10180. impl core::fmt::Display for aya::util::KernelVersion
  10181. pub fn aya::util::KernelVersion::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10182. impl core::marker::Copy for aya::util::KernelVersion
  10183. impl core::marker::StructuralPartialEq for aya::util::KernelVersion
  10184. impl core::marker::Freeze for aya::util::KernelVersion
  10185. impl core::marker::Send for aya::util::KernelVersion
  10186. impl core::marker::Sync for aya::util::KernelVersion
  10187. impl core::marker::Unpin for aya::util::KernelVersion
  10188. impl core::panic::unwind_safe::RefUnwindSafe for aya::util::KernelVersion
  10189. impl core::panic::unwind_safe::UnwindSafe for aya::util::KernelVersion
  10190. impl<Q, K> equivalent::Equivalent<K> for aya::util::KernelVersion where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  10191. pub fn aya::util::KernelVersion::equivalent(&self, key: &K) -> bool
  10192. impl<T, U> core::convert::Into<U> for aya::util::KernelVersion where U: core::convert::From<T>
  10193. pub fn aya::util::KernelVersion::into(self) -> U
  10194. impl<T, U> core::convert::TryFrom<U> for aya::util::KernelVersion where U: core::convert::Into<T>
  10195. pub type aya::util::KernelVersion::Error = core::convert::Infallible
  10196. pub fn aya::util::KernelVersion::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10197. impl<T, U> core::convert::TryInto<U> for aya::util::KernelVersion where U: core::convert::TryFrom<T>
  10198. pub type aya::util::KernelVersion::Error = <U as core::convert::TryFrom<T>>::Error
  10199. pub fn aya::util::KernelVersion::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10200. impl<T> alloc::borrow::ToOwned for aya::util::KernelVersion where T: core::clone::Clone
  10201. pub type aya::util::KernelVersion::Owned = T
  10202. pub fn aya::util::KernelVersion::clone_into(&self, target: &mut T)
  10203. pub fn aya::util::KernelVersion::to_owned(&self) -> T
  10204. impl<T> alloc::string::ToString for aya::util::KernelVersion where T: core::fmt::Display + ?core::marker::Sized
  10205. pub fn aya::util::KernelVersion::to_string(&self) -> alloc::string::String
  10206. impl<T> core::any::Any for aya::util::KernelVersion where T: 'static + ?core::marker::Sized
  10207. pub fn aya::util::KernelVersion::type_id(&self) -> core::any::TypeId
  10208. impl<T> core::borrow::Borrow<T> for aya::util::KernelVersion where T: ?core::marker::Sized
  10209. pub fn aya::util::KernelVersion::borrow(&self) -> &T
  10210. impl<T> core::borrow::BorrowMut<T> for aya::util::KernelVersion where T: ?core::marker::Sized
  10211. pub fn aya::util::KernelVersion::borrow_mut(&mut self) -> &mut T
  10212. impl<T> core::clone::CloneToUninit for aya::util::KernelVersion where T: core::clone::Clone
  10213. pub unsafe fn aya::util::KernelVersion::clone_to_uninit(&self, dest: *mut u8)
  10214. impl<T> core::convert::From<T> for aya::util::KernelVersion
  10215. pub fn aya::util::KernelVersion::from(t: T) -> T
  10216. pub fn aya::util::kernel_symbols() -> core::result::Result<alloc::collections::btree::map::BTreeMap<u64, alloc::string::String>, std::io::error::Error>
  10217. pub fn aya::util::nr_cpus() -> core::result::Result<usize, (&'static str, std::io::error::Error)>
  10218. pub fn aya::util::online_cpus() -> core::result::Result<alloc::vec::Vec<u32>, (&'static str, std::io::error::Error)>
  10219. pub fn aya::util::syscall_prefix() -> core::result::Result<&'static str, std::io::error::Error>
  10220. pub macro aya::include_bytes_aligned!
  10221. pub enum aya::EbpfError
  10222. pub aya::EbpfError::BtfError(aya_obj::btf::btf::BtfError)
  10223. pub aya::EbpfError::BtfRelocationError(aya_obj::btf::relocation::BtfRelocationError)
  10224. pub aya::EbpfError::FileError
  10225. pub aya::EbpfError::FileError::error: std::io::error::Error
  10226. pub aya::EbpfError::FileError::path: std::path::PathBuf
  10227. pub aya::EbpfError::MapError(aya::maps::MapError)
  10228. pub aya::EbpfError::NoBTF
  10229. pub aya::EbpfError::ParseError(aya_obj::obj::ParseError)
  10230. pub aya::EbpfError::ProgramError(aya::programs::ProgramError)
  10231. pub aya::EbpfError::RelocationError(aya_obj::relocation::EbpfRelocationError)
  10232. pub aya::EbpfError::UnexpectedPinningType
  10233. pub aya::EbpfError::UnexpectedPinningType::name: u32
  10234. impl core::convert::From<aya::maps::MapError> for aya::EbpfError
  10235. pub fn aya::EbpfError::from(source: aya::maps::MapError) -> Self
  10236. impl core::convert::From<aya::programs::ProgramError> for aya::EbpfError
  10237. pub fn aya::EbpfError::from(source: aya::programs::ProgramError) -> Self
  10238. impl core::convert::From<aya_obj::btf::btf::BtfError> for aya::EbpfError
  10239. pub fn aya::EbpfError::from(source: aya_obj::btf::btf::BtfError) -> Self
  10240. impl core::convert::From<aya_obj::btf::relocation::BtfRelocationError> for aya::EbpfError
  10241. pub fn aya::EbpfError::from(source: aya_obj::btf::relocation::BtfRelocationError) -> Self
  10242. impl core::convert::From<aya_obj::obj::ParseError> for aya::EbpfError
  10243. pub fn aya::EbpfError::from(source: aya_obj::obj::ParseError) -> Self
  10244. impl core::convert::From<aya_obj::relocation::EbpfRelocationError> for aya::EbpfError
  10245. pub fn aya::EbpfError::from(source: aya_obj::relocation::EbpfRelocationError) -> Self
  10246. impl core::error::Error for aya::EbpfError
  10247. pub fn aya::EbpfError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  10248. impl core::fmt::Debug for aya::EbpfError
  10249. pub fn aya::EbpfError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10250. impl core::fmt::Display for aya::EbpfError
  10251. pub fn aya::EbpfError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10252. impl core::marker::Freeze for aya::EbpfError
  10253. impl core::marker::Send for aya::EbpfError
  10254. impl core::marker::Sync for aya::EbpfError
  10255. impl core::marker::Unpin for aya::EbpfError
  10256. impl !core::panic::unwind_safe::RefUnwindSafe for aya::EbpfError
  10257. impl !core::panic::unwind_safe::UnwindSafe for aya::EbpfError
  10258. impl<T, U> core::convert::Into<U> for aya::EbpfError where U: core::convert::From<T>
  10259. pub fn aya::EbpfError::into(self) -> U
  10260. impl<T, U> core::convert::TryFrom<U> for aya::EbpfError where U: core::convert::Into<T>
  10261. pub type aya::EbpfError::Error = core::convert::Infallible
  10262. pub fn aya::EbpfError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10263. impl<T, U> core::convert::TryInto<U> for aya::EbpfError where U: core::convert::TryFrom<T>
  10264. pub type aya::EbpfError::Error = <U as core::convert::TryFrom<T>>::Error
  10265. pub fn aya::EbpfError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10266. impl<T> alloc::string::ToString for aya::EbpfError where T: core::fmt::Display + ?core::marker::Sized
  10267. pub fn aya::EbpfError::to_string(&self) -> alloc::string::String
  10268. impl<T> core::any::Any for aya::EbpfError where T: 'static + ?core::marker::Sized
  10269. pub fn aya::EbpfError::type_id(&self) -> core::any::TypeId
  10270. impl<T> core::borrow::Borrow<T> for aya::EbpfError where T: ?core::marker::Sized
  10271. pub fn aya::EbpfError::borrow(&self) -> &T
  10272. impl<T> core::borrow::BorrowMut<T> for aya::EbpfError where T: ?core::marker::Sized
  10273. pub fn aya::EbpfError::borrow_mut(&mut self) -> &mut T
  10274. impl<T> core::convert::From<T> for aya::EbpfError
  10275. pub fn aya::EbpfError::from(t: T) -> T
  10276. pub struct aya::Ebpf
  10277. impl aya::Ebpf
  10278. pub fn aya::Ebpf::load(data: &[u8]) -> core::result::Result<Self, aya::EbpfError>
  10279. pub fn aya::Ebpf::load_file<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::EbpfError>
  10280. pub fn aya::Ebpf::map(&self, name: &str) -> core::option::Option<&aya::maps::Map>
  10281. pub fn aya::Ebpf::map_mut(&mut self, name: &str) -> core::option::Option<&mut aya::maps::Map>
  10282. pub fn aya::Ebpf::maps(&self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &aya::maps::Map)>
  10283. pub fn aya::Ebpf::maps_mut(&mut self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &mut aya::maps::Map)>
  10284. pub fn aya::Ebpf::program(&self, name: &str) -> core::option::Option<&aya::programs::Program>
  10285. pub fn aya::Ebpf::program_mut(&mut self, name: &str) -> core::option::Option<&mut aya::programs::Program>
  10286. pub fn aya::Ebpf::programs(&self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &aya::programs::Program)>
  10287. pub fn aya::Ebpf::programs_mut(&mut self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &mut aya::programs::Program)>
  10288. pub fn aya::Ebpf::take_map(&mut self, name: &str) -> core::option::Option<aya::maps::Map>
  10289. impl core::fmt::Debug for aya::Ebpf
  10290. pub fn aya::Ebpf::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10291. impl core::marker::Freeze for aya::Ebpf
  10292. impl core::marker::Send for aya::Ebpf
  10293. impl core::marker::Sync for aya::Ebpf
  10294. impl core::marker::Unpin for aya::Ebpf
  10295. impl core::panic::unwind_safe::RefUnwindSafe for aya::Ebpf
  10296. impl core::panic::unwind_safe::UnwindSafe for aya::Ebpf
  10297. impl<T, U> core::convert::Into<U> for aya::Ebpf where U: core::convert::From<T>
  10298. pub fn aya::Ebpf::into(self) -> U
  10299. impl<T, U> core::convert::TryFrom<U> for aya::Ebpf where U: core::convert::Into<T>
  10300. pub type aya::Ebpf::Error = core::convert::Infallible
  10301. pub fn aya::Ebpf::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10302. impl<T, U> core::convert::TryInto<U> for aya::Ebpf where U: core::convert::TryFrom<T>
  10303. pub type aya::Ebpf::Error = <U as core::convert::TryFrom<T>>::Error
  10304. pub fn aya::Ebpf::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10305. impl<T> core::any::Any for aya::Ebpf where T: 'static + ?core::marker::Sized
  10306. pub fn aya::Ebpf::type_id(&self) -> core::any::TypeId
  10307. impl<T> core::borrow::Borrow<T> for aya::Ebpf where T: ?core::marker::Sized
  10308. pub fn aya::Ebpf::borrow(&self) -> &T
  10309. impl<T> core::borrow::BorrowMut<T> for aya::Ebpf where T: ?core::marker::Sized
  10310. pub fn aya::Ebpf::borrow_mut(&mut self) -> &mut T
  10311. impl<T> core::convert::From<T> for aya::Ebpf
  10312. pub fn aya::Ebpf::from(t: T) -> T
  10313. pub struct aya::EbpfLoader<'a>
  10314. impl<'a> aya::EbpfLoader<'a>
  10315. pub fn aya::EbpfLoader<'a>::allow_unsupported_maps(&mut self) -> &mut Self
  10316. pub fn aya::EbpfLoader<'a>::btf(&mut self, btf: core::option::Option<&'a aya_obj::btf::btf::Btf>) -> &mut Self
  10317. pub fn aya::EbpfLoader<'a>::extension(&mut self, name: &'a str) -> &mut Self
  10318. pub fn aya::EbpfLoader<'a>::load(&mut self, data: &[u8]) -> core::result::Result<aya::Ebpf, aya::EbpfError>
  10319. pub fn aya::EbpfLoader<'a>::load_file<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<aya::Ebpf, aya::EbpfError>
  10320. pub fn aya::EbpfLoader<'a>::map_pin_path<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> &mut Self
  10321. pub fn aya::EbpfLoader<'a>::new() -> Self
  10322. pub fn aya::EbpfLoader<'a>::set_global<T: core::convert::Into<aya::GlobalData<'a>>>(&mut self, name: &'a str, value: T, must_exist: bool) -> &mut Self
  10323. pub fn aya::EbpfLoader<'a>::set_max_entries(&mut self, name: &'a str, size: u32) -> &mut Self
  10324. pub fn aya::EbpfLoader<'a>::verifier_log_level(&mut self, level: aya::VerifierLogLevel) -> &mut Self
  10325. impl core::default::Default for aya::EbpfLoader<'_>
  10326. pub fn aya::EbpfLoader<'_>::default() -> Self
  10327. impl<'a> core::fmt::Debug for aya::EbpfLoader<'a>
  10328. pub fn aya::EbpfLoader<'a>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10329. impl<'a> core::marker::Freeze for aya::EbpfLoader<'a>
  10330. impl<'a> core::marker::Send for aya::EbpfLoader<'a>
  10331. impl<'a> core::marker::Sync for aya::EbpfLoader<'a>
  10332. impl<'a> core::marker::Unpin for aya::EbpfLoader<'a>
  10333. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::EbpfLoader<'a>
  10334. impl<'a> core::panic::unwind_safe::UnwindSafe for aya::EbpfLoader<'a>
  10335. impl<T, U> core::convert::Into<U> for aya::EbpfLoader<'a> where U: core::convert::From<T>
  10336. pub fn aya::EbpfLoader<'a>::into(self) -> U
  10337. impl<T, U> core::convert::TryFrom<U> for aya::EbpfLoader<'a> where U: core::convert::Into<T>
  10338. pub type aya::EbpfLoader<'a>::Error = core::convert::Infallible
  10339. pub fn aya::EbpfLoader<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10340. impl<T, U> core::convert::TryInto<U> for aya::EbpfLoader<'a> where U: core::convert::TryFrom<T>
  10341. pub type aya::EbpfLoader<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  10342. pub fn aya::EbpfLoader<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10343. impl<T> core::any::Any for aya::EbpfLoader<'a> where T: 'static + ?core::marker::Sized
  10344. pub fn aya::EbpfLoader<'a>::type_id(&self) -> core::any::TypeId
  10345. impl<T> core::borrow::Borrow<T> for aya::EbpfLoader<'a> where T: ?core::marker::Sized
  10346. pub fn aya::EbpfLoader<'a>::borrow(&self) -> &T
  10347. impl<T> core::borrow::BorrowMut<T> for aya::EbpfLoader<'a> where T: ?core::marker::Sized
  10348. pub fn aya::EbpfLoader<'a>::borrow_mut(&mut self) -> &mut T
  10349. impl<T> core::convert::From<T> for aya::EbpfLoader<'a>
  10350. pub fn aya::EbpfLoader<'a>::from(t: T) -> T
  10351. pub struct aya::GlobalData<'a>
  10352. impl<'a, T: aya::Pod> core::convert::From<&'a T> for aya::GlobalData<'a>
  10353. pub fn aya::GlobalData<'a>::from(v: &'a T) -> Self
  10354. impl<'a, T: aya::Pod> core::convert::From<&'a [T]> for aya::GlobalData<'a>
  10355. pub fn aya::GlobalData<'a>::from(s: &'a [T]) -> Self
  10356. impl<'a> core::marker::Freeze for aya::GlobalData<'a>
  10357. impl<'a> core::marker::Send for aya::GlobalData<'a>
  10358. impl<'a> core::marker::Sync for aya::GlobalData<'a>
  10359. impl<'a> core::marker::Unpin for aya::GlobalData<'a>
  10360. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::GlobalData<'a>
  10361. impl<'a> core::panic::unwind_safe::UnwindSafe for aya::GlobalData<'a>
  10362. impl<T, U> core::convert::Into<U> for aya::GlobalData<'a> where U: core::convert::From<T>
  10363. pub fn aya::GlobalData<'a>::into(self) -> U
  10364. impl<T, U> core::convert::TryFrom<U> for aya::GlobalData<'a> where U: core::convert::Into<T>
  10365. pub type aya::GlobalData<'a>::Error = core::convert::Infallible
  10366. pub fn aya::GlobalData<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10367. impl<T, U> core::convert::TryInto<U> for aya::GlobalData<'a> where U: core::convert::TryFrom<T>
  10368. pub type aya::GlobalData<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  10369. pub fn aya::GlobalData<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10370. impl<T> core::any::Any for aya::GlobalData<'a> where T: 'static + ?core::marker::Sized
  10371. pub fn aya::GlobalData<'a>::type_id(&self) -> core::any::TypeId
  10372. impl<T> core::borrow::Borrow<T> for aya::GlobalData<'a> where T: ?core::marker::Sized
  10373. pub fn aya::GlobalData<'a>::borrow(&self) -> &T
  10374. impl<T> core::borrow::BorrowMut<T> for aya::GlobalData<'a> where T: ?core::marker::Sized
  10375. pub fn aya::GlobalData<'a>::borrow_mut(&mut self) -> &mut T
  10376. impl<T> core::convert::From<T> for aya::GlobalData<'a>
  10377. pub fn aya::GlobalData<'a>::from(t: T) -> T
  10378. pub struct aya::VerifierLogLevel(_)
  10379. impl aya::VerifierLogLevel
  10380. pub const aya::VerifierLogLevel::DEBUG: Self
  10381. pub const aya::VerifierLogLevel::DISABLE: Self
  10382. pub const aya::VerifierLogLevel::STATS: Self
  10383. pub const aya::VerifierLogLevel::VERBOSE: Self
  10384. impl aya::VerifierLogLevel
  10385. pub const fn aya::VerifierLogLevel::all() -> Self
  10386. pub const fn aya::VerifierLogLevel::bits(&self) -> u32
  10387. pub const fn aya::VerifierLogLevel::complement(self) -> Self
  10388. pub const fn aya::VerifierLogLevel::contains(&self, other: Self) -> bool
  10389. pub const fn aya::VerifierLogLevel::difference(self, other: Self) -> Self
  10390. pub const fn aya::VerifierLogLevel::empty() -> Self
  10391. pub const fn aya::VerifierLogLevel::from_bits(bits: u32) -> core::option::Option<Self>
  10392. pub const fn aya::VerifierLogLevel::from_bits_retain(bits: u32) -> Self
  10393. pub const fn aya::VerifierLogLevel::from_bits_truncate(bits: u32) -> Self
  10394. pub fn aya::VerifierLogLevel::from_name(name: &str) -> core::option::Option<Self>
  10395. pub fn aya::VerifierLogLevel::insert(&mut self, other: Self)
  10396. pub const fn aya::VerifierLogLevel::intersection(self, other: Self) -> Self
  10397. pub const fn aya::VerifierLogLevel::intersects(&self, other: Self) -> bool
  10398. pub const fn aya::VerifierLogLevel::is_all(&self) -> bool
  10399. pub const fn aya::VerifierLogLevel::is_empty(&self) -> bool
  10400. pub fn aya::VerifierLogLevel::remove(&mut self, other: Self)
  10401. pub fn aya::VerifierLogLevel::set(&mut self, other: Self, value: bool)
  10402. pub const fn aya::VerifierLogLevel::symmetric_difference(self, other: Self) -> Self
  10403. pub fn aya::VerifierLogLevel::toggle(&mut self, other: Self)
  10404. pub const fn aya::VerifierLogLevel::union(self, other: Self) -> Self
  10405. impl aya::VerifierLogLevel
  10406. pub const fn aya::VerifierLogLevel::iter(&self) -> bitflags::iter::Iter<aya::VerifierLogLevel>
  10407. pub const fn aya::VerifierLogLevel::iter_names(&self) -> bitflags::iter::IterNames<aya::VerifierLogLevel>
  10408. impl bitflags::traits::Flags for aya::VerifierLogLevel
  10409. pub type aya::VerifierLogLevel::Bits = u32
  10410. pub const aya::VerifierLogLevel::FLAGS: &'static [bitflags::traits::Flag<aya::VerifierLogLevel>]
  10411. pub fn aya::VerifierLogLevel::bits(&self) -> u32
  10412. pub fn aya::VerifierLogLevel::from_bits_retain(bits: u32) -> aya::VerifierLogLevel
  10413. impl bitflags::traits::PublicFlags for aya::VerifierLogLevel
  10414. pub type aya::VerifierLogLevel::Internal = InternalBitFlags
  10415. pub type aya::VerifierLogLevel::Primitive = u32
  10416. impl core::clone::Clone for aya::VerifierLogLevel
  10417. pub fn aya::VerifierLogLevel::clone(&self) -> aya::VerifierLogLevel
  10418. impl core::default::Default for aya::VerifierLogLevel
  10419. pub fn aya::VerifierLogLevel::default() -> Self
  10420. impl core::fmt::Binary for aya::VerifierLogLevel
  10421. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10422. impl core::fmt::Debug for aya::VerifierLogLevel
  10423. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10424. impl core::fmt::LowerHex for aya::VerifierLogLevel
  10425. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10426. impl core::fmt::Octal for aya::VerifierLogLevel
  10427. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10428. impl core::fmt::UpperHex for aya::VerifierLogLevel
  10429. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10430. impl core::iter::traits::collect::Extend<aya::VerifierLogLevel> for aya::VerifierLogLevel
  10431. pub fn aya::VerifierLogLevel::extend<T: core::iter::traits::collect::IntoIterator<Item = Self>>(&mut self, iterator: T)
  10432. impl core::iter::traits::collect::FromIterator<aya::VerifierLogLevel> for aya::VerifierLogLevel
  10433. pub fn aya::VerifierLogLevel::from_iter<T: core::iter::traits::collect::IntoIterator<Item = Self>>(iterator: T) -> Self
  10434. impl core::iter::traits::collect::IntoIterator for aya::VerifierLogLevel
  10435. pub type aya::VerifierLogLevel::IntoIter = bitflags::iter::Iter<aya::VerifierLogLevel>
  10436. pub type aya::VerifierLogLevel::Item = aya::VerifierLogLevel
  10437. pub fn aya::VerifierLogLevel::into_iter(self) -> Self::IntoIter
  10438. impl core::marker::Copy for aya::VerifierLogLevel
  10439. impl core::ops::arith::Sub for aya::VerifierLogLevel
  10440. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10441. pub fn aya::VerifierLogLevel::sub(self, other: Self) -> Self
  10442. impl core::ops::arith::SubAssign for aya::VerifierLogLevel
  10443. pub fn aya::VerifierLogLevel::sub_assign(&mut self, other: Self)
  10444. impl core::ops::bit::BitAnd for aya::VerifierLogLevel
  10445. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10446. pub fn aya::VerifierLogLevel::bitand(self, other: Self) -> Self
  10447. impl core::ops::bit::BitAndAssign for aya::VerifierLogLevel
  10448. pub fn aya::VerifierLogLevel::bitand_assign(&mut self, other: Self)
  10449. impl core::ops::bit::BitOr for aya::VerifierLogLevel
  10450. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10451. pub fn aya::VerifierLogLevel::bitor(self, other: aya::VerifierLogLevel) -> Self
  10452. impl core::ops::bit::BitOrAssign for aya::VerifierLogLevel
  10453. pub fn aya::VerifierLogLevel::bitor_assign(&mut self, other: Self)
  10454. impl core::ops::bit::BitXor for aya::VerifierLogLevel
  10455. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10456. pub fn aya::VerifierLogLevel::bitxor(self, other: Self) -> Self
  10457. impl core::ops::bit::BitXorAssign for aya::VerifierLogLevel
  10458. pub fn aya::VerifierLogLevel::bitxor_assign(&mut self, other: Self)
  10459. impl core::ops::bit::Not for aya::VerifierLogLevel
  10460. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10461. pub fn aya::VerifierLogLevel::not(self) -> Self
  10462. impl core::marker::Freeze for aya::VerifierLogLevel
  10463. impl core::marker::Send for aya::VerifierLogLevel
  10464. impl core::marker::Sync for aya::VerifierLogLevel
  10465. impl core::marker::Unpin for aya::VerifierLogLevel
  10466. impl core::panic::unwind_safe::RefUnwindSafe for aya::VerifierLogLevel
  10467. impl core::panic::unwind_safe::UnwindSafe for aya::VerifierLogLevel
  10468. impl<T, U> core::convert::Into<U> for aya::VerifierLogLevel where U: core::convert::From<T>
  10469. pub fn aya::VerifierLogLevel::into(self) -> U
  10470. impl<T, U> core::convert::TryFrom<U> for aya::VerifierLogLevel where U: core::convert::Into<T>
  10471. pub type aya::VerifierLogLevel::Error = core::convert::Infallible
  10472. pub fn aya::VerifierLogLevel::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10473. impl<T, U> core::convert::TryInto<U> for aya::VerifierLogLevel where U: core::convert::TryFrom<T>
  10474. pub type aya::VerifierLogLevel::Error = <U as core::convert::TryFrom<T>>::Error
  10475. pub fn aya::VerifierLogLevel::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10476. impl<T> alloc::borrow::ToOwned for aya::VerifierLogLevel where T: core::clone::Clone
  10477. pub type aya::VerifierLogLevel::Owned = T
  10478. pub fn aya::VerifierLogLevel::clone_into(&self, target: &mut T)
  10479. pub fn aya::VerifierLogLevel::to_owned(&self) -> T
  10480. impl<T> core::any::Any for aya::VerifierLogLevel where T: 'static + ?core::marker::Sized
  10481. pub fn aya::VerifierLogLevel::type_id(&self) -> core::any::TypeId
  10482. impl<T> core::borrow::Borrow<T> for aya::VerifierLogLevel where T: ?core::marker::Sized
  10483. pub fn aya::VerifierLogLevel::borrow(&self) -> &T
  10484. impl<T> core::borrow::BorrowMut<T> for aya::VerifierLogLevel where T: ?core::marker::Sized
  10485. pub fn aya::VerifierLogLevel::borrow_mut(&mut self) -> &mut T
  10486. impl<T> core::clone::CloneToUninit for aya::VerifierLogLevel where T: core::clone::Clone
  10487. pub unsafe fn aya::VerifierLogLevel::clone_to_uninit(&self, dest: *mut u8)
  10488. impl<T> core::convert::From<T> for aya::VerifierLogLevel
  10489. pub fn aya::VerifierLogLevel::from(t: T) -> T
  10490. pub unsafe trait aya::Pod: core::marker::Copy + 'static
  10491. impl aya::Pod for aya_obj::generated::linux_bindings_x86_64::bpf_cpumap_val
  10492. impl aya::Pod for aya_obj::generated::linux_bindings_x86_64::bpf_devmap_val
  10493. impl aya::Pod for i128
  10494. impl aya::Pod for i16
  10495. impl aya::Pod for i32
  10496. impl aya::Pod for i64
  10497. impl aya::Pod for i8
  10498. impl aya::Pod for u128
  10499. impl aya::Pod for u16
  10500. impl aya::Pod for u32
  10501. impl aya::Pod for u64
  10502. impl aya::Pod for u8
  10503. impl<K: aya::Pod> aya::Pod for aya::maps::lpm_trie::Key<K>
  10504. impl<T: aya::Pod, const N: usize> aya::Pod for [T; N]
  10505. pub fn aya::features() -> &'static aya_obj::obj::Features
  10506. pub type aya::Bpf = aya::Ebpf
  10507. pub type aya::BpfError = aya::EbpfError
  10508. pub type aya::BpfLoader<'a> = aya::EbpfLoader<'a>